Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1623036
| From | Rafal Ozieblo <rafalo@cadence.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 4/4] net: macb: Add macb_ptp to compilation chain |
| Date | 2017-04-13 15:50 +0200 |
| Message-ID | <tvNii-3GT-25@gated-at.bofh.it> (permalink) |
| References | <tvN8C-3CF-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Add macb_ptp.c to Makefile. In case that macb is compiled as a module, it has been renamed to cadence-macb.ko to avoid naming confusion in Makefile. Signed-off-by: Rafal Ozieblo <rafalo@cadence.com> --- drivers/net/ethernet/cadence/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/net/ethernet/cadence/Makefile b/drivers/net/ethernet/cadence/Makefile index 4ba7559..a7f6e04 100644 --- a/drivers/net/ethernet/cadence/Makefile +++ b/drivers/net/ethernet/cadence/Makefile @@ -1,6 +1,11 @@ # # Makefile for the Atmel network device drivers. # +cadence-macb-y := macb.o -obj-$(CONFIG_MACB) += macb.o +ifeq ($(CONFIG_MACB_USE_HWSTAMP),y) +cadence-macb-y += macb_ptp.o +endif + +obj-$(CONFIG_MACB) += cadence-macb.o obj-$(CONFIG_MACB_PCI) += macb_pci.o -- 2.4.5
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 4/4] net: macb: Add macb_ptp to compilation chain Rafal Ozieblo <rafalo@cadence.com> - 2017-04-13 15:50 +0200 Re: [PATCH 4/4] net: macb: Add macb_ptp to compilation chain Richard Cochran <richardcochran@gmail.com> - 2017-04-14 10:00 +0200
csiph-web