Linux IIO development
 help / color / mirror / Atom feed
* [PATCH] iio/imu: inv_mpu6050 depends on IIO_BUFFER
@ 2013-03-01 15:21 Guenter Roeck
  2013-03-02 16:30 ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Guenter Roeck @ 2013-03-01 15:21 UTC (permalink / raw)
  To: linux-iio; +Cc: Lars-Peter Clausen, Ge Gao, Guenter Roeck

Fix:

drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c: In function ‘inv_mpu6050_read_fifo’:
drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c:176:3: error: implicit declaration of
function ‘iio_push_to_buffers’ [-Werror=implicit-function-declaration]

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 drivers/iio/imu/inv_mpu6050/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iio/imu/inv_mpu6050/Kconfig b/drivers/iio/imu/inv_mpu6050/Kconfig
index b5cfa3a..361b232 100644
--- a/drivers/iio/imu/inv_mpu6050/Kconfig
+++ b/drivers/iio/imu/inv_mpu6050/Kconfig
@@ -5,6 +5,7 @@
 config INV_MPU6050_IIO
 	tristate "Invensense MPU6050 devices"
 	depends on I2C && SYSFS
+	select IIO_BUFFER
 	select IIO_TRIGGERED_BUFFER
 	help
 	  This driver supports the Invensense MPU6050 devices.
-- 
1.7.9.7


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio/imu: inv_mpu6050 depends on IIO_BUFFER
  2013-03-01 15:21 [PATCH] iio/imu: inv_mpu6050 depends on IIO_BUFFER Guenter Roeck
@ 2013-03-02 16:30 ` Jonathan Cameron
  2013-03-02 16:32   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2013-03-02 16:30 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: linux-iio, Lars-Peter Clausen, Ge Gao

On 03/01/2013 03:21 PM, Guenter Roeck wrote:
> Fix:
> 
> drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c: In function ‘inv_mpu6050_read_fifo’:
> drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c:176:3: error: implicit declaration of
> function ‘iio_push_to_buffers’ [-Werror=implicit-function-declaration]
> 
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Thanks, applied to togreg branch of iio.git

> ---
>  drivers/iio/imu/inv_mpu6050/Kconfig |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/iio/imu/inv_mpu6050/Kconfig b/drivers/iio/imu/inv_mpu6050/Kconfig
> index b5cfa3a..361b232 100644
> --- a/drivers/iio/imu/inv_mpu6050/Kconfig
> +++ b/drivers/iio/imu/inv_mpu6050/Kconfig
> @@ -5,6 +5,7 @@
>  config INV_MPU6050_IIO
>  	tristate "Invensense MPU6050 devices"
>  	depends on I2C && SYSFS
> +	select IIO_BUFFER
>  	select IIO_TRIGGERED_BUFFER
>  	help
>  	  This driver supports the Invensense MPU6050 devices.
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio/imu: inv_mpu6050 depends on IIO_BUFFER
  2013-03-02 16:30 ` Jonathan Cameron
@ 2013-03-02 16:32   ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2013-03-02 16:32 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: linux-iio, Lars-Peter Clausen, Ge Gao

On 03/02/2013 04:30 PM, Jonathan Cameron wrote:
> On 03/01/2013 03:21 PM, Guenter Roeck wrote:
>> Fix:
>>
>> drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c: In function ‘inv_mpu6050_read_fifo’:
>> drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c:176:3: error: implicit declaration of
>> function ‘iio_push_to_buffers’ [-Werror=implicit-function-declaration]
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> Thanks, applied to togreg branch of iio.git
sorry I mean the fixes-togreg branch of iio.git

> 
>> ---
>>  drivers/iio/imu/inv_mpu6050/Kconfig |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/iio/imu/inv_mpu6050/Kconfig b/drivers/iio/imu/inv_mpu6050/Kconfig
>> index b5cfa3a..361b232 100644
>> --- a/drivers/iio/imu/inv_mpu6050/Kconfig
>> +++ b/drivers/iio/imu/inv_mpu6050/Kconfig
>> @@ -5,6 +5,7 @@
>>  config INV_MPU6050_IIO
>>  	tristate "Invensense MPU6050 devices"
>>  	depends on I2C && SYSFS
>> +	select IIO_BUFFER
>>  	select IIO_TRIGGERED_BUFFER
>>  	help
>>  	  This driver supports the Invensense MPU6050 devices.
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-02 16:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-01 15:21 [PATCH] iio/imu: inv_mpu6050 depends on IIO_BUFFER Guenter Roeck
2013-03-02 16:30 ` Jonathan Cameron
2013-03-02 16:32   ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox