projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c14b15
)
mtd: ixp4xx: fix reading from half-word boundary
author
Jon Ringle
<jon@ringle.org>
Wed, 13 Jan 2010 14:36:10 +0000
(09:36 -0500)
committer
David Woodhouse
<David.Woodhouse@intel.com>
Thu, 25 Feb 2010 11:28:56 +0000
(11:28 +0000)
Fix handling of reads that don't start on a half-word boundary.
Signed-off-by: Jon Ringle <jon@ringle.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/mtd/maps/ixp4xx.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mtd/maps/ixp4xx.c
b/drivers/mtd/maps/ixp4xx.c
index 7b0515297411fc092a3793222f95dd11c9adb6a8..7513d90fee6fcd33dfbd49dc35feb7461fce45e9 100644
(file)
--- a/
drivers/mtd/maps/ixp4xx.c
+++ b/
drivers/mtd/maps/ixp4xx.c
@@
-107,8
+107,8
@@
static void ixp4xx_copy_from(struct map_info *map, void *to,
return;
if (from & 1) {
- *dest++ = BYTE1(flash_read16(src));
-
src++;
+ *dest++ = BYTE1(flash_read16(src
-1
));
+ src++;
--len;
}