[PATCH V3 03/10] net: dsa: microchip: Inline ksz_spi.h

2019-06-23 Thread Marek Vasut
The functions in the header file are static, and the header file is included from single C file, just inline the code into the C file. The bonus is that it's easier to spot further content to clean up. Signed-off-by: Marek Vasut Cc: Andrew Lunn Cc: Florian Fainelli Cc: Tristram Ha Cc: Woojung

Re: [PATCH V3 03/10] net: dsa: microchip: Inline ksz_spi.h

2019-06-23 Thread Andrew Lunn
On Mon, Jun 24, 2019 at 12:35:01AM +0200, Marek Vasut wrote: > The functions in the header file are static, and the header file is > included from single C file, just inline the code into the C file. > The bonus is that it's easier to spot further content to clean up. > > Signed-off-by: Marek Vasu