summaryrefslogtreecommitdiff
path: root/packages/hdparm/hdparm-6.9/bswap.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/hdparm/hdparm-6.9/bswap.patch
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/hdparm/hdparm-6.9/bswap.patch')
-rw-r--r--packages/hdparm/hdparm-6.9/bswap.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/packages/hdparm/hdparm-6.9/bswap.patch b/packages/hdparm/hdparm-6.9/bswap.patch
deleted file mode 100644
index 3281c33954..0000000000
--- a/packages/hdparm/hdparm-6.9/bswap.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
-Index: hdparm-6.9/hdparm.c
-===================================================================
---- hdparm-6.9.orig/hdparm.c 2006-10-25 16:41:33.000000000 +0200
-+++ hdparm-6.9/hdparm.c 2007-03-05 14:02:03.000000000 +0100
-@@ -19,8 +19,9 @@
- #include <linux/types.h>
- #include <linux/hdreg.h>
- #include <linux/major.h>
--#include <asm/byteorder.h>
--//#include <endian.h>
-+#include <byteswap.h>
-+
-+#define le16_to_cpus(x) bswap_16(htons(x))
-
- #include "hdparm.h"
-
-@@ -1328,7 +1329,7 @@
- }
- } else {
- for(i = 0; i < 0x100; ++i) {
-- __le16_to_cpus(&id[i]);
-+ le16_to_cpus(&id[i]);
- }
- identify((void *)id);
- }
-@@ -1608,7 +1609,7 @@
- && ishex(d[++digit] = getchar())
- && ishex(d[++digit] = getchar())) {
- sbuf[wc] = (fromhex(d[0]) << 12) | (fromhex(d[1]) << 8) | (fromhex(d[2]) << 4) | fromhex(d[3]);
-- __le16_to_cpus((__u16 *)(&sbuf[wc]));
-+ le16_to_cpus((__u16 *)(&sbuf[wc]));
- ++wc;
- } else if (d[digit] == EOF) {
- goto eof;