From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marc Dietrich Subject: [PATCH] spi/tegra: fix compilation error in spi-tegra.c Date: Thu, 13 Oct 2011 11:01:33 +0200 Message-ID: <1458857.A6MEb356Lm@fb07-iapwap2> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Sender: linux-tegra-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Grant Likely Cc: Olof Johansson , Colin Cross , linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-tegra@vger.kernel.org Add #include to spi-tegra.c to fix a compilation error after the removal of module.h from device.h (in patch: "include: replace linux/module.h with "struct module" wherever possible"). Signed-off-by: Marc Dietrich Acked-by: Olof Johansson --- Hi Grant, this fixes the error below: CC drivers/spi/spi-tegra.o drivers/spi/spi-tegra.c:597: error: expected declaration specifiers or '...' before string constant drivers/spi/spi-tegra.c:597: warning: data definition has no type or storage class drivers/spi/spi-tegra.c:597: warning: type defaults to 'int' in declaration of 'MODULE_ALIAS' drivers/spi/spi-tegra.c:597: warning: function declaration isn't a prototype drivers/spi/spi-tegra.c:604: warning: data definition has no type or storage class drivers/spi/spi-tegra.c:604: warning: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' drivers/spi/spi-tegra.c:604: warning: parameter names (without types) in function declaration drivers/spi/spi-tegra.c:612: error: 'THIS_MODULE' undeclared here (not in a function) drivers/spi/spi-tegra.c:630: error: expected declaration specifiers or '...' before string constant drivers/spi/spi-tegra.c:630: warning: data definition has no type or storage class drivers/spi/spi-tegra.c:630: warning: type defaults to 'int' in declaration of 'MODULE_LICENSE' drivers/spi/spi-tegra.c:630: warning: function declaration isn't a prototype make[2]: *** [drivers/spi/spi-tegra.o] Error 1 It is against linux-next (for 3.2). Please apply. Thanks Marc diff --git a/drivers/spi/spi-tegra.c b/drivers/spi/spi-tegra.c index a5a6302..e8cd58f 100644 --- a/drivers/spi/spi-tegra.c +++ b/drivers/spi/spi-tegra.c @@ -18,6 +18,7 @@ */ #include +#include #include #include #include