diff options
author | John Crispin <john@openwrt.org> | 2012-07-25 08:01:38 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-07-25 08:01:38 +0000 |
commit | 1cbfa0c0f50a8dd8d2cfab1090465d3765c43dcb (patch) | |
tree | 2a5586bad27a509cf4896ceadbdbebeebb297634 /target | |
parent | 2113c65f958f4dc0a7507dc561514f287c404b8e (diff) | |
download | mtk-20170518-1cbfa0c0f50a8dd8d2cfab1090465d3765c43dcb.zip mtk-20170518-1cbfa0c0f50a8dd8d2cfab1090465d3765c43dcb.tar.gz mtk-20170518-1cbfa0c0f50a8dd8d2cfab1090465d3765c43dcb.tar.bz2 |
laguna: fix eeprom read buffer size during platform configuration
Increase the size of the buffer used for eeprom reads during the platform configuration of the Gateworks laguna. The model name read in is 16 bytes but the original buffer was only 8 bytes.
Signed-off-by: David Acker <dacker@rajant.com>
SVN-Revision: 32833
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/cns3xxx/patches-3.3/100-laguna_support.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/cns3xxx/patches-3.3/100-laguna_support.patch b/target/linux/cns3xxx/patches-3.3/100-laguna_support.patch index 0137ae0..64b7adb 100644 --- a/target/linux/cns3xxx/patches-3.3/100-laguna_support.patch +++ b/target/linux/cns3xxx/patches-3.3/100-laguna_support.patch @@ -490,7 +490,7 @@ + +static void at24_setup(struct memory_accessor *mem_acc, void *context) +{ -+ char buf[8]; ++ char buf[16]; + + at24_mem_acc = mem_acc; + |