diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-02-23 17:16:44 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-02-23 17:16:44 +0000 |
commit | 02bb7892fe36ea1310b00ae7c3883e99ab4f0a43 (patch) | |
tree | f732283b85aa1ecebd02a764f9fd614bbc99120f /util/flashrom/flashchips.c | |
parent | 24c541ba946e576e00add8a7c2942ff799284ac5 (diff) |
added sharp flash
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2180 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flashchips.c')
-rw-r--r-- | util/flashrom/flashchips.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/flashrom/flashchips.c b/util/flashrom/flashchips.c index 823154ae1b..ba003bf19f 100644 --- a/util/flashrom/flashchips.c +++ b/util/flashrom/flashchips.c @@ -36,6 +36,7 @@ #include "sst49lf040.h" #include "pm49fl004.h" #include "mx29f002.h" +#include "sharplhf00l04.h" #include "sst_fwhub.h" struct flashchip flashchips[] = { @@ -85,6 +86,8 @@ struct flashchip flashchips[] = { NULL, 8, 8 * 1024, probe_md2802, erase_md2802, write_md2802, read_md2802}, #endif + {"LHF00L04", SHARP_ID, SHARP_LHF00L04, NULL, 1024, 64 * 1024, + probe_lhf00l04, erase_lhf00l04, write_lhf00l04, NULL}, {NULL,} }; |