RE: [build bug] iwl-3945-led.c:(.text+0x119e36): undefined reference to `__led_classdev_unregister'

From: Winkler, Tomas
Date: Mon Apr 21 2008 - 13:03:27 EST




>-----Original Message-----
>From: David Miller [mailto:davem@xxxxxxxxxxxxx]
>Sent: Sunday, April 20, 2008 10:52 AM
>To: mingo@xxxxxxx
>Cc: linville@xxxxxxxxxxxxx; Winkler, Tomas;
linux-kernel@xxxxxxxxxxxxxxx;
>kaber@xxxxxxxxx; torvalds@xxxxxxxxxxxxxxxxxxxx;
akpm@xxxxxxxxxxxxxxxxxxxx;
>netdev@xxxxxxxxxxxxxxx; netfilter-devel@xxxxxxxxxxxxxxx;
>mabbas@xxxxxxxxxxxxxxx; ischram@xxxxxxxxxx; rjw@xxxxxxx
>Subject: Re: [build bug] iwl-3945-led.c:(.text+0x119e36): undefined
>reference to `__led_classdev_unregister'
>
>From: Ingo Molnar <mingo@xxxxxxx>
>Date: Sun, 20 Apr 2008 09:34:41 +0200
>
>> drivers/built-in.o: In function `iwl3945_led_unregister_led':
>> iwl-3945-led.c:(.text+0x119e36): undefined reference to
>`__led_classdev_unregister'
>> drivers/built-in.o: In function `iwl3945_led_register_led':
>> iwl-3945-led.c:(.text+0x119ecd): undefined reference to
>`led_classdev_register'
>
>Thanks for the report.
>
>This is the classic "API_OPTION=m && API_USER=y" problem.
>
>In this case the best fix is probably to use select in the
>iwlwifi Kconfig files. The following patch should cure it.
>
>iwlwifi: Use 'select' for MAC80211_LEDS and LEDS_CLASS instead of
'depends'
>
>Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
>
>diff --git a/drivers/net/wireless/iwlwifi/Kconfig
>b/drivers/net/wireless/iwlwifi/Kconfig
>index f844b73..c4e631d 100644
>--- a/drivers/net/wireless/iwlwifi/Kconfig
>+++ b/drivers/net/wireless/iwlwifi/Kconfig
>@@ -49,7 +49,9 @@ config IWL4965_HT
>
> config IWL4965_LEDS
> bool "Enable LEDS features in iwl4965 driver"
>- depends on IWL4965 && MAC80211_LEDS && LEDS_CLASS
>+ depends on IWL4965
>+ select MAC80211_LEDS
>+ select LEDS_CLASS
> select IWLWIFI_LEDS
> ---help---
> This option enables LEDS for the iwlwifi drivers
>@@ -134,7 +136,9 @@ config IWL3945_SPECTRUM_MEASUREMENT
>
> config IWL3945_LEDS
> bool "Enable LEDS features in iwl3945 driver"
>- depends on IWL3945 && MAC80211_LEDS && LEDS_CLASS
>+ depends on IWL3945
>+ select MAC80211_LEDS
>+ select LEDS_CLASS
> ---help---
> This option enables LEDS for the iwl3945 driver.
>

ACK
---------------------------------------------------------------------
Intel Israel (74) Limited

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/