On 01/04/2011 02:00 PM, Philip Prindeville wrote: > Anyone else seeing the following breakage? I'm building the 2010-12-24 > snapshot against 2.6.27.49: > > CC [M] > /home/philipp/astlinux/build_i586/compat-wireless-2010-12-24/drivers/net/wireless/rtlwifi/base.o > > /home/philipp/astlinux/build_i586/compat-wireless-2010-12-24/drivers/net/wireless/rtlwifi/base.c: > In function '_rtl_init_deferred_work': > /home/philipp/astlinux/build_i586/compat-wireless-2010-12-24/drivers/net/wireless/rtlwifi/base.c:229: > error: implicit declaration of function 'alloc_workqueue' > /home/philipp/astlinux/build_i586/compat-wireless-2010-12-24/drivers/net/wireless/rtlwifi/base.c:229: > warning: assignment makes pointer from integer without a cast The call create_workqueue() is obsolete and is being replaced by alloc_workqueue(). Unfortunately, older kernels do not have the newer call. A patch for compat-wireless has been submitted, but I don't think the package has rebuilt successfully since then. You have two options: (1) if you do not need a driver for the RTL8192CE/RTL8187CE cards, then deselect them from the build, or (2) Find the line in drivers/net/wireless/rtlwifi/base.c that says rtlpriv->works.rtl_wq = alloc_workqueue(rtlpriv->cfg->name, 0, 0); and replace it with rtlpriv->works.rtl_wq = create_workqueue(rtlpriv->cfg->name); Larry -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html