diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-06-15 14:14:48 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-06-15 14:14:48 +0000 |
commit | 084546449983c1d6f147c1a3e381e225887e322c (patch) | |
tree | fc79779916814dacb82b3b951a07ca6e4b3b7207 /flashrom.c | |
parent | 3b0d664a142aa2f187d5f29a1fae809933305a61 (diff) | |
download | flashrom-084546449983c1d6f147c1a3e381e225887e322c.tar.gz flashrom-084546449983c1d6f147c1a3e381e225887e322c.tar.bz2 flashrom-084546449983c1d6f147c1a3e381e225887e322c.zip |
Split flashchips.h from flash.h
Flash.h not only contains function prototypes and general settings, it
also has a huge chunk of chip and vendor IDs in the middle.
Split them out into a separate flashchips.h and adjust #include wherever
needed.
Corresponding to flashrom svn r594.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Urja Rannikko <urjaman@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
Diffstat (limited to 'flashrom.c')
-rw-r--r-- | flashrom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/flashrom.c b/flashrom.c index f35e9b0cc..bb2c160a3 100644 --- a/flashrom.c +++ b/flashrom.c @@ -28,6 +28,7 @@ #include <stdlib.h> #include <getopt.h> #include "flash.h" +#include "flashchips.h" char *chip_to_probe = NULL; int exclude_start_page, exclude_end_page; |