From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com ([134.134.136.24]:21633 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751011Ab2LaFgI (ORCPT ); Mon, 31 Dec 2012 00:36:08 -0500 From: Yuanhan Liu To: linux-iio@vger.kernel.org, devel@driverdev.osuosl.org Cc: linux-kernel@vger.kernel.org, Yuanhan Liu , Lars-Peter Clausen , Jonathan Cameron , Greg Kroah-Hartman Subject: [PATCH] staging:iio:adis16260: select IIO_ADIS_LIB to fix build error Date: Mon, 31 Dec 2012 13:36:35 +0800 Message-Id: <1356932195-31437-1-git-send-email-yuanhan.liu@linux.intel.com> Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org Commit 9d5e9fdf turned the code to use adis library, so it depends on adis lib. But it forgot to select it at Kconfig file. Thus if adis is not enabled, it will produce following build errros(catched by Fengguang's 0-DAY kernel build testing system): ERROR: "adis_initial_startup" [drivers/staging/iio/gyro/adis16260.ko] undefined! ERROR: "adis_init" [drivers/staging/iio/gyro/adis16260.ko] undefined! ERROR: "adis_write_reg" [drivers/staging/iio/gyro/adis16260.ko] undefined! ERROR: "adis_read_reg" [drivers/staging/iio/gyro/adis16260.ko] undefined! ERROR: "adis_single_conversion" [drivers/staging/iio/gyro/adis16260.ko] undefined! Selecting IIO_ADIS_LIB at Kconfig file fixes this issue. Reported-by: Fengguang Wu Cc: Lars-Peter Clausen Cc: Jonathan Cameron Cc: Greg Kroah-Hartman Signed-off-by: Yuanhan Liu --- drivers/staging/iio/gyro/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/staging/iio/gyro/Kconfig b/drivers/staging/iio/gyro/Kconfig index ea295b2..476207a 100644 --- a/drivers/staging/iio/gyro/Kconfig +++ b/drivers/staging/iio/gyro/Kconfig @@ -27,6 +27,7 @@ config ADIS16130 config ADIS16260 tristate "Analog Devices ADIS16260 Digital Gyroscope Sensor SPI driver" depends on SPI + select IIO_ADIS_LIB select IIO_TRIGGER if IIO_BUFFER select IIO_SW_RING if IIO_BUFFER help -- 1.7.7.6