>>>> When I modprobe wlcore-spi I get a kernel crash. Has anyone >>>> encountered this? I found a similar problem here: >>>> http://marc.info/?l=linux-wireless&m=135212370625698&w=2 >>>> >>>> I tried adding the patch mentioned there to backports-3.12-1, but I >>>> get this build error: "error: 'struct wl1271' has no member named >>>> 'set_power'" >>>> >>>> Here's the crash: >>>> >>>> [ 98.325693] Unable to handle kernel NULL pointer dereference at >>>> virtual address 00000000 >>>> [ 98.334171] pgd = c0004000 >>>> [ 98.337031] [00000000] *pgd=00000000 >>>> [ 98.340791] Internal error: Oops: 80000007 [#1] >>>> [ 98.345524] Modules linked in: wlcore_spi(O) wl12xx(O) wlcore(O) >>>> mac80211(O) cfg80211(O) compat(O) autofs4 >>>> [ 98.355661] CPU: 0 Tainted: G O (3.2.0) >>>> [ 98.364120] PC is at 0x0 >>>> [ 98.366846] LR is at wl12xx_set_power_on+0x30/0x150 [wlcore] >>> >>> I think this should help: >>> http://www.spinics.net/lists/linux-wireless/msg98589.html >>> >> >> As I mentioned above, I get a compile error with that patch: the >> wl1271 struct doesn't have "set_power". > > I got the patch to compile by adding "void (*set_power)(bool enable);" > to the wl1271 struct in wlcore.h. Now the driver loads without > crashing, but I get a new error: > So my hack was obviously not the right solution, because I'm not powering the chip. I know that in wlcore\spi.c, I need to set a .power function in spi_ops (i.e. .power = wl12xx_spi_power). And I already have a wl12xx_platform_data with a .set_power function defined in my board platform file. But I don't know how to access my platform file's set_power function from the wl12xx_spi_power function in spi.c. In other words, I can' figure out how to do this from wlcore\spi.c: static int wl12xx_spi_power(struct device *child, bool enable) { set_power_function_defined_in_my_board_platform_file(enable); } -- 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