summaryrefslogtreecommitdiff
path: root/packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2006-05-07 23:40:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-07 23:40:37 +0000
commit357afa3e6583be6cc166e03ef37bb710ca596a78 (patch)
treebc6f3dbb1c7e925f5ef481dc02b19882f4a3526c /packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch
parent01307093a7a3978f49d4e34087ef5df5f93e5933 (diff)
linux-openzaurus: Drop 2.6.15. Add 2.6.16+git. Update 2.6.16 with an MMC oops fix and some LED/Backlight sysfs attribute fixes.
Diffstat (limited to 'packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch')
-rw-r--r--packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch b/packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch
deleted file mode 100644
index ea82d9ca97..0000000000
--- a/packages/linux/linux-openzaurus-2.6.15/gcc4-ledclass-static-order-hack.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -bur linux-2.6.15~orig/drivers/ide/ide-disk.c linux-2.6.15/drivers/ide/ide-disk.c
---- linux-2.6.15~orig/drivers/ide/ide-disk.c 2006-02-11 00:02:50.000000000 -0600
-+++ linux-2.6.15/drivers/ide/ide-disk.c 2006-02-11 00:11:20.000000000 -0600
-@@ -158,6 +158,12 @@
- return 0; /* lba_capacity value may be bad */
- }
-
-+static int ide_end_rw_disk(ide_drive_t *drive, int uptodate, int nr_sectors)
-+{
-+ led_trigger_event(ide_led_trigger, LED_OFF);
-+ ide_end_request(drive, uptodate, nr_sectors);
-+}
-+
- /*
- * __ide_do_rw_disk() issues READ and WRITE commands to a disk,
- * using LBA if supported, or CHS otherwise, to address sectors.
-@@ -330,12 +336,6 @@
- return __ide_do_rw_disk(drive, rq, block);
- }
-
--static int ide_end_rw_disk(ide_drive_t *drive, int uptodate, int nr_sectors)
--{
-- led_trigger_event(ide_led_trigger, LED_OFF);
-- ide_end_request(drive, uptodate, nr_sectors);
--}
--
- /*
- * Queries for true maximum capacity of the drive.
- * Returns maximum LBA address (> 0) of the drive, 0 if failed.