All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: Axel Lin <axel.lin@ingics.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
	Wu Fengguang <fengguang.wu@intel.com>
Subject: Re: [PATCH v3] iio: dac: Fix build error when CONFIG_SPI_MASTER=y && CONFIG_I2C=m
Date: Sat, 11 May 2013 10:52:49 +0100	[thread overview]
Message-ID: <518E14F1.6000008@kernel.org> (raw)
In-Reply-To: <518B5F73.4010702@metafoo.de>

On 05/09/2013 09:33 AM, Lars-Peter Clausen wrote:
> On 05/09/2013 09:49 AM, Axel Lin wrote:
>> This patch fixes below build error when CONFIG_SPI_MASTER=y && CONFIG_I2C=m:
>>
>> drivers/built-in.o: In function `ad5064_i2c_write':
>> drivers/iio/dac/ad5064.c:608: undefined reference to `i2c_master_send'
>> drivers/built-in.o: In function `ad5064_i2c_register_driver':
>> drivers/iio/dac/ad5064.c:646: undefined reference to `i2c_register_driver'
>> drivers/built-in.o: In function `ad5064_i2c_unregister_driver':
>> drivers/iio/dac/ad5064.c:651: undefined reference to `i2c_del_driver'
>> make: *** [vmlinux] Error 1
>>
>> When CONFIG_I2C=m, meaning we can't build the drivers in with I2C support.
>> Thus don't allow the drivers to be compiled as built-in when CONFIG_I2C=m.
>>
>> The real fix though is to break the driver apart into a SPI part, an I2C part
>> and a common part. But that's something for 3.11 while this is something for
>> 3.10/stable.
>>
>> Reported-by: Wu Fengguang <fengguang.wu@intel.com>
>> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> 
> Thanks for taking care of this.
> 
> Acked-by: Lars-Peter Clausen <lars@metafoo.de>
> 
> Jonathan when you apply this please also add:
> 
> Reported-by: Randy Dunlap <rdunlap@infradead.org>
> 
> since he reported the issue as well
>
Done and applied to fixes-togreg branch of iio.git

Thanks all.
>> ---
>> v3: Update comment
>>
>>  drivers/iio/dac/Kconfig | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/iio/dac/Kconfig b/drivers/iio/dac/Kconfig
>> index f4a6f08..b61160b 100644
>> --- a/drivers/iio/dac/Kconfig
>> +++ b/drivers/iio/dac/Kconfig
>> @@ -5,7 +5,7 @@ menu "Digital to analog converters"
>>  
>>  config AD5064
>>  	tristate "Analog Devices AD5064 and similar multi-channel DAC driver"
>> -	depends on (SPI_MASTER || I2C)
>> +	depends on (SPI_MASTER && I2C!=m) || I2C
>>  	help
>>  	  Say yes here to build support for Analog Devices AD5024, AD5025, AD5044,
>>  	  AD5045, AD5064, AD5064-1, AD5065, AD5628, AD5629R, AD5648, AD5666, AD5668,
>> @@ -27,7 +27,7 @@ config AD5360
>>  
>>  config AD5380
>>  	tristate "Analog Devices AD5380/81/82/83/84/90/91/92 DAC driver"
>> -	depends on (SPI_MASTER || I2C)
>> +	depends on (SPI_MASTER && I2C!=m) || I2C
>>  	select REGMAP_I2C if I2C
>>  	select REGMAP_SPI if SPI_MASTER
>>  	help
>> @@ -57,7 +57,7 @@ config AD5624R_SPI
>>  
>>  config AD5446
>>  	tristate "Analog Devices AD5446 and similar single channel DACs driver"
>> -	depends on (SPI_MASTER || I2C)
>> +	depends on (SPI_MASTER && I2C!=m) || I2C
>>  	help
>>  	  Say yes here to build support for Analog Devices AD5300, AD5301, AD5310,
>>  	  AD5311, AD5320, AD5321, AD5444, AD5446, AD5450, AD5451, AD5452, AD5453,
> 
> --
> 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
> 

      reply	other threads:[~2013-05-11  9:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-09  7:49 [PATCH v3] iio: dac: Fix build error when CONFIG_SPI_MASTER=y && CONFIG_I2C=m Axel Lin
2013-05-09  8:33 ` Lars-Peter Clausen
2013-05-11  9:52   ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=518E14F1.6000008@kernel.org \
    --to=jic23@kernel.org \
    --cc=axel.lin@ingics.com \
    --cc=fengguang.wu@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.