diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-10-18 19:29:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-10-18 19:29:43 +0000 |
commit | 1010441880aee280580534f0fb0a68e4a98eb375 (patch) | |
tree | 58800c7dbb1b770ab67a02fa08d9767f6fc9471c /packages/wifistix/wifistix-modules/marvell-devicetable.patch | |
parent | 7bcfa6ab969ca61e3bcde9eee3240f32f578d1e5 (diff) | |
parent | fdb7f09ca89562f586e1d9a6235e6a72da1ff77b (diff) |
merge of '947287d07500dfb42d1f2f6b23d0bcd2ed00c920'
and 'da91d7ddb56154d2bd01a37943cd55b4ba49ac8a'
Diffstat (limited to 'packages/wifistix/wifistix-modules/marvell-devicetable.patch')
-rw-r--r-- | packages/wifistix/wifistix-modules/marvell-devicetable.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/wifistix/wifistix-modules/marvell-devicetable.patch b/packages/wifistix/wifistix-modules/marvell-devicetable.patch new file mode 100644 index 0000000000..5d726a582b --- /dev/null +++ b/packages/wifistix/wifistix-modules/marvell-devicetable.patch @@ -0,0 +1,25 @@ +--- src_cf8385/io/mcf/cf_io-orig.c 2006-04-29 16:26:16.000000000 -0700 ++++ src_cf8385/io/mcf/cf_io.c 2006-04-29 16:32:59.000000000 -0700 +@@ -415,6 +415,14 @@ + + + #ifndef LINUX_2_4 ++static struct pcmcia_device_id cfio_ids[] = { ++ PCMCIA_DEVICE_MANF_CARD(0x02df, 0x8103), ++ PCMCIA_DEVICE_PROD_ID12("Marvell", "88W8300 802.11g PC Card", ++ 0xE86284BA, 0x8C78E0CD), ++ PCMCIA_DEVICE_NULL, ++}; ++MODULE_DEVICE_TABLE(pcmcia, cfio_ids); ++ + static struct pcmcia_driver cfio_cs_driver = { + .owner = THIS_MODULE, + .drv = { +@@ -423,6 +431,7 @@ + .attach = cf_attach, + .detach = cf_detach, + .event = cf_event, ++ .id_table = cfio_ids, + }; + #endif + |