On 02/28/2011 02:13 PM, John W. Linville wrote:
On Mon, Feb 28, 2011 at 09:08:51PM +0100, Johannes Berg wrote:
On Mon, 2011-02-28 at 14:48 -0500, John W. Linville wrote:
+ifeq ($(CONFIG_USB),y)
+rtlwifi-objs += usb.o
+endif
That reads weird, shouldn't
rtlwifi-$(CONFIG_USB) += usb.o
do? Or more likely actually use CONFIG_RTL8192CU?
Maybe...really just following what Larry already had there for pci...?
Yes, and that was wrong too.
It could be either as Johannes wrote it, or
ifneq ($(CONFIG_USB),)
rtlwifi-objs += usb.o
endif
Yhe PCI entry will also fail if CONFIG_PCI=m.
Larry
--
To unsubscribe from this list: send the line "unsubscribe linux-next" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html