From fc54b9bf158eea9cae647ce2c58f7d9989af173a Mon Sep 17 00:00:00 2001 From: mirko Date: Fri, 12 Dec 2008 11:58:53 +0000 Subject: changed Makefile and profiles, added patches for kernel 2.6.24 (stable-branch of Openmoko) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13613 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...t-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 target/linux/s3c24xx/patches-2.6.24/1166-Subject-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch (limited to 'target/linux/s3c24xx/patches-2.6.24/1166-Subject-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch') diff --git a/target/linux/s3c24xx/patches-2.6.24/1166-Subject-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch b/target/linux/s3c24xx/patches-2.6.24/1166-Subject-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch new file mode 100644 index 0000000000..5d5fbe92c0 --- /dev/null +++ b/target/linux/s3c24xx/patches-2.6.24/1166-Subject-PATCH-a6k-Everyone-calls-SET_NET_DEV-an.patch @@ -0,0 +1,62 @@ +From 9250c1fc7d6f62075d14ad8f396748490a55d61e Mon Sep 17 00:00:00 2001 +From: Holger Freyther +Date: Thu, 19 Jun 2008 22:13:31 +0100 +Subject: [PATCH] Subject: [PATCH] [a6k] Everyone calls SET_NET_DEV and hald needs that too, + make it happy + Call SET_NET_DEV to set a parent device. All other net drivers + are doing this and hald needs a parent to add the network device. + +--- + .../sdio/function/wlan/ar6000/ar6000/ar6000_drv.c | 1 + + drivers/sdio/function/wlan/ar6000/hif/hif.c | 6 ++++++ + drivers/sdio/function/wlan/ar6000/include/hif.h | 5 +++++ + 3 files changed, 12 insertions(+), 0 deletions(-) + +diff --git a/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.c b/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.c +index a854c7c..dacc00a 100644 +--- a/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.c ++++ b/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.c +@@ -830,6 +830,7 @@ ar6000_avail_ev(HTC_HANDLE HTCHandle) + sizeof(WMI_DATA_HDR) + HTC_HEADER_LEN; + + /* This runs the init function */ ++ SET_NETDEV_DEV(dev, HIFGetOSDevice(ar->arHifDevice)); + if (register_netdev(dev)) { + AR_DEBUG_PRINTF("ar6000_avail: register_netdev failed\n"); + ar6000_destroy(dev, 0); +diff --git a/drivers/sdio/function/wlan/ar6000/hif/hif.c b/drivers/sdio/function/wlan/ar6000/hif/hif.c +index f5a0986..3d6d792 100644 +--- a/drivers/sdio/function/wlan/ar6000/hif/hif.c ++++ b/drivers/sdio/function/wlan/ar6000/hif/hif.c +@@ -779,6 +779,12 @@ delHifDevice(SDDEVICE *handle) + hifDevice[0].handle = NULL; + } + ++struct device* ++HIFGetOSDevice(HIF_DEVICE *device) ++{ ++ return &device->handle->Device.dev; ++} ++ + static void ResetAllCards(void) + { + UINT8 data; +diff --git a/drivers/sdio/function/wlan/ar6000/include/hif.h b/drivers/sdio/function/wlan/ar6000/include/hif.h +index f32388c..846a69f 100644 +--- a/drivers/sdio/function/wlan/ar6000/include/hif.h ++++ b/drivers/sdio/function/wlan/ar6000/include/hif.h +@@ -284,6 +284,11 @@ HIFConfigureDevice(HIF_DEVICE *device, HIF_DEVICE_CONFIG_OPCODE opcode, + void *config, A_UINT32 configLen); + + ++struct device; ++struct device* ++HIFGetOSDevice(HIF_DEVICE *device); ++ ++ + #ifdef __cplusplus + } + #endif +-- +1.5.6.5 + -- cgit v1.2.3