diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-08-22 10:30:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-22 10:30:30 +0000 |
commit | a1392aaa1d146d105ebf7a6528b91d5746dc0b89 (patch) | |
tree | 544be87e85beb17b818921c5ee851ca7c0c87863 /packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch | |
parent | a98fc361734009b592044b9b73dfdce3f20caebd (diff) |
add support for the Sharp SL-C3100 (Borzoi)
Diffstat (limited to 'packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch')
-rw-r--r-- | packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch b/packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch new file mode 100644 index 0000000000..73d0f1c51c --- /dev/null +++ b/packages/linux/openzaurus-pxa27x-2.4.20-rmk2-embedix20050602/idecs.patch @@ -0,0 +1,78 @@ +--- linux/drivers/ide/ide-cs.c 2004-11-15 22:31:07.000000000 -0800 ++++ linux/drivers/ide/ide-cs.c.new 2005-03-01 22:07:52.334266784 -0800 +@@ -2,7 +2,7 @@ + + A driver for PCMCIA IDE/ATA disk cards + +- ide_cs.c 1.26 1999/11/16 02:10:49 ++ ide-cs.c 1.26 1999/11/16 02:10:49 + + The contents of this file are subject to the Mozilla Public + License Version 1.1 (the "License"); you may not use this file +@@ -68,7 +68,7 @@ + MODULE_PARM(pc_debug, "i"); + #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args) + static char *version = +-"ide_cs.c 1.26 1999/11/16 02:10:49 (David Hinds)"; ++"ide-cs.c 1.26 1999/11/16 02:10:49 (David Hinds)"; + #else + #define DEBUG(n, args...) + #endif +@@ -113,7 +113,7 @@ + event_callback_args_t *args); + + #ifdef CONFIG_ARCH_SHARP_SL +-static dev_info_t dev_info = "ide_cs"; ++static dev_info_t dev_info = "ide-cs"; + #else + static dev_info_t dev_info = "ide-cs"; + #endif +@@ -379,7 +379,7 @@ + } + + if (hd < 0) { +- printk(KERN_NOTICE "ide_cs: ide_register() at 0x%03x & 0x%03x" ++ printk(KERN_NOTICE "ide-cs: ide_register() at 0x%03x & 0x%03x" + ", irq %u failed\n", io_base, ctl_base, + link->irq.AssignedIRQ); + goto failed; +@@ -392,7 +392,7 @@ + info->node.minor = 0; + info->hd = hd; + link->dev = &info->node; +- printk(KERN_INFO "ide_cs: %s: Vcc = %d.%d, Vpp = %d.%d\n", ++ printk(KERN_INFO "ide-cs: %s: Vcc = %d.%d, Vpp = %d.%d\n", + info->node.dev_name, link->conf.Vcc/10, link->conf.Vcc%10, + link->conf.Vpp1/10, link->conf.Vpp1%10); + +@@ -434,10 +434,10 @@ + + #ifdef CONFIG_ARCH_SHARP_SL + request_region(link->io.BasePort1, +- link->io.NumPorts1 << PCMCIA_ADDRESS_SHIFT,"ide_cs"); ++ link->io.NumPorts1 << PCMCIA_ADDRESS_SHIFT,"ide-cs"); + if (link->io.NumPorts2) + request_region(link->io.BasePort2, +- link->io.NumPorts2 << PCMCIA_ADDRESS_SHIFT,"ide_cs"); ++ link->io.NumPorts2 << PCMCIA_ADDRESS_SHIFT,"ide-cs"); + #else + request_region(link->io.BasePort1, + link->io.NumPorts1 << PCMCIA_ADDRESS_SHIFT,"ide-cs"); +@@ -556,7 +556,7 @@ + DEBUG(0, "%s\n", version); + CardServices(GetCardServicesInfo, &serv); + if (serv.Revision != CS_RELEASE_CODE) { +- printk(KERN_NOTICE "ide_cs: Card Services release " ++ printk(KERN_NOTICE "ide-cs: Card Services release " + "does not match!\n"); + return -1; + } +@@ -566,7 +566,7 @@ + + static void __exit exit_ide_cs(void) + { +- DEBUG(0, "ide_cs: unloading\n"); ++ DEBUG(0, "ide-cs: unloading\n"); + unregister_pccard_driver(&dev_info); + while (dev_list != NULL) + ide_detach(dev_list); |