diff options
author | Mateusz Murawski <matowy@tlen.pl> | 2009-06-02 00:38:14 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-06-02 00:38:14 +0000 |
commit | 81222f0fcc5ad0be5eb9b87512d11afaae813c08 (patch) | |
tree | 52d8b74f973f2edba9eebb96d0d4bdaed46429e8 /flashchips.c | |
parent | bb75772e7f926cd9c2856ab3bbbca4da42c5e061 (diff) | |
download | flashrom-81222f0fcc5ad0be5eb9b87512d11afaae813c08.zip flashrom-81222f0fcc5ad0be5eb9b87512d11afaae813c08.tar.gz |
Unify AMD manufacture_id and model_id
Corresponding to flashrom svn r564.
Signed-off-by: Mateusz Murawski <matowy@tlen.pl>
Acked-by: FENG Yu Ning <fengyuning1984@gmail.com>
Diffstat (limited to 'flashchips.c')
-rw-r--r-- | flashchips.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/flashchips.c b/flashchips.c index cf96db7..f211539 100644 --- a/flashchips.c +++ b/flashchips.c @@ -101,8 +101,8 @@ struct flashchip flashchips[] = { .vendor = "AMD", .name = "Am29F080B", .bustype = CHIP_BUSTYPE_NONSPI, - .manufacture_id = 0x01, - .model_id = 0xd5, + .manufacture_id = AMD_ID, + .model_id = AM_29F080B, .total_size = 1024, .page_size = 64 * 1024, .tested = TEST_UNTESTED, @@ -131,8 +131,8 @@ struct flashchip flashchips[] = { .vendor = "AMD", .name = "Am29LV081B", .bustype = CHIP_BUSTYPE_NONSPI, - .manufacture_id = 0x01, - .model_id = 0x38, + .manufacture_id = AMD_ID, + .model_id = AM_29LV081B, .total_size = 1024, .page_size = 64 * 1024, .tested = TEST_UNTESTED, |