At Tue, 12 Jan 2010 14:09:37 +0000, Mark Brown wrote:
On Tue, Jan 12, 2010 at 02:48:46PM +0100, Takashi Iwai wrote:
Other low-hanging fruits:
sound/soc/codecs/da7210.c:499: warning: 'da7210_i2c_remove' defined but not used sound/soc/codecs/tlv320dac33.c:1349: warning: 'dac33_i2c_remove' defined but not used sound/soc/codecs/tpa6130a2.c:483: warning: 'tpa6130a2_remove' defined but not used
Should be easily fixed by adding __devexit (and better with __devinit) properly.
What config do you use to generate these warnings? None of mine generate them.
They are from make allyesconfig with certain config files, such as ixp2000_defconfig or footbridge_defconfig. For example,
% cp arch/arm/configs/footbridge_defconfig .config % KCONFIG_ALLCONFIG=.config make ARCH=arm allyesconfig
Takashi