From mboxrd@z Thu Jan 1 00:00:00 1970 From: jic23@kernel.org (Jonathan Cameron) Date: Sat, 10 May 2014 11:40:21 +0100 Subject: [PATCH 1/2] iio: always select ANON_INODES In-Reply-To: <1399560990-1402858-12-git-send-email-arnd@arndb.de> References: <1399560433-1402630-1-git-send-email-arnd@arndb.de> <1399560990-1402858-1-git-send-email-arnd@arndb.de> <1399560990-1402858-12-git-send-email-arnd@arndb.de> Message-ID: <536E0215.8070708@kernel.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 08/05/14 15:56, Arnd Bergmann wrote: > Without ANON_INODES, we get this build error: > > drivers/built-in.o: In function `iio_event_getfd': > :(.text+0x14bf18): undefined reference to `anon_inode_getfd' > > All other users explicitly select this symbol, so we should > do the same thing here. > > Signed-off-by: Arnd Bergmann > Cc: Jonathan Cameron > Cc: linux-iio at vger.kernel.org Applied to the togreg branch of iio.git. Thanks, > --- > drivers/iio/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/Kconfig b/drivers/iio/Kconfig > index 743485e..345395e 100644 > --- a/drivers/iio/Kconfig > +++ b/drivers/iio/Kconfig > @@ -4,6 +4,7 @@ > > menuconfig IIO > tristate "Industrial I/O support" > + select ANON_INODES > help > The industrial I/O subsystem provides a unified framework for > drivers for many different types of embedded sensors using a >