diff options
author | 2011-07-28 18:46:31 -0400 | |
---|---|---|
committer | 2011-10-31 19:30:57 -0400 | |
commit | cae39d1386dba405de0fbda32e224a1535d38a07 (patch) | |
tree | e7c7e16a6052ba6476e164767e5d07f2acbb809e /arch/mips/txx9/generic/spi_eeprom.c | |
parent | mips: remove needless include of module.h from core kernel files. (diff) | |
download | linux-rng-cae39d1386dba405de0fbda32e224a1535d38a07.tar.xz linux-rng-cae39d1386dba405de0fbda32e224a1535d38a07.zip |
mips: add export.h to files using EXPORT_SYMBOL/THIS_MODULE
Or else we get lots of variations on this:
arch/mips/pci/pci.c:330: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL'
scattered throughout the build.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/mips/txx9/generic/spi_eeprom.c')
-rw-r--r-- | arch/mips/txx9/generic/spi_eeprom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/txx9/generic/spi_eeprom.c b/arch/mips/txx9/generic/spi_eeprom.c index 103abc13d623..3dbad99d5611 100644 --- a/arch/mips/txx9/generic/spi_eeprom.c +++ b/arch/mips/txx9/generic/spi_eeprom.c @@ -11,6 +11,7 @@ */ #include <linux/init.h> #include <linux/slab.h> +#include <linux/export.h> #include <linux/device.h> #include <linux/spi/spi.h> #include <linux/spi/eeprom.h> |