mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-16 07:27:26 +00:00
kernel: Fix oob layout of XTX XT26G0xA
The correct oob layout is: ECC: region->offset = 48; region->length = 16; Free: /* Reserve 1 byte for the BBM. */ region->offset = 1; region->length = 47; Signed-off-by: Felix Matouschek <felix@matouschek.org> (cherry picked from commit a5de91a88a8a33ced147bb5340fd45599f652d4d)
This commit is contained in:
parent
aa640401e5
commit
f12adc412b
@ -83,8 +83,8 @@ Signed-off-by: Felix Matouschek <felix@matouschek.org>
|
||||
+ if (section)
|
||||
+ return -ERANGE;
|
||||
+
|
||||
+ region->offset = 8;
|
||||
+ region->length = 40;
|
||||
+ region->offset = 48;
|
||||
+ region->length = 16;
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
@ -96,7 +96,7 @@ Signed-off-by: Felix Matouschek <felix@matouschek.org>
|
||||
+ return -ERANGE;
|
||||
+
|
||||
+ region->offset = 1;
|
||||
+ region->length = 7;
|
||||
+ region->length = 47;
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
|
Loading…
x
Reference in New Issue
Block a user