Message ID | 1492090798-16253-1-git-send-email-rafalo@cadence.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Apr 13, 2017 at 02:39:58PM +0100, Rafal Ozieblo wrote: > 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. Renaming modules will break user's modpobe scripts. Why not keep macb.ko as the build product and rename macb.c to macb_main.c instead? Thanks, Richard
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
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(-)