From mboxrd@z Thu Jan 1 00:00:00 1970 From: Geert Uytterhoeven Subject: Re: [RFC PATCH 1/2] net-next: ax88796: export ax_NS8390_init() hook Date: Sat, 9 Jun 2018 16:31:34 +0200 Message-ID: References: <1528523869-3403-2-git-send-email-schmitzmic@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: <1528523869-3403-2-git-send-email-schmitzmic@gmail.com> Sender: netdev-owner@vger.kernel.org To: Michael Schmitz Cc: netdev , Linux/m68k , Andrew Lunn , Finn Thain List-Id: linux-m68k@vger.kernel.org Hi Michael, On Sat, Jun 9, 2018 at 7:58 AM Michael Schmitz wrote: > The block I/O code for the new X-Surf 100 ax88796 driver needs > ax_NS8390_init() for error fixup in its block_output function. > > Export this function so we can lose the lib8380.c include in the > X-Surf 100 driver. > > Signed-off-by: Michael Schmitz Thanks for your patch! > --- a/drivers/net/ethernet/8390/ax88796.c > +++ b/drivers/net/ethernet/8390/ax88796.c > @@ -62,6 +62,8 @@ > > #include "lib8390.c" > > +EXPORT_SYMBOL_GPL(ax_NS8390_init); While that works for the modular case, it doesn't work for the builtin case, as the function is static. You can fix that by adding a non-static wrapper, and exporting that one instead. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds