diff options
| author | Keith Packard <keithp@keithp.com> | 2010-11-01 23:27:45 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-11-01 23:27:45 -0700 |
| commit | 799361921d4f0351b1f93aa70ea3f378b2423409 (patch) | |
| tree | 64abb09f7fa0e89364df4cc55d6df4c5b4c049b0 | |
| parent | 84311abb703178f61cb90359deb0cbf3fa9c101f (diff) | |
altos: M25P driver had bogus extra arguments in flash info printf format.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | src/ao_m25.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_m25.c b/src/ao_m25.c index 39bcac86..9af2510f 100644 --- a/src/ao_m25.c +++ b/src/ao_m25.c @@ -334,7 +334,7 @@ ao_flash_info(void) __reentrant printf ("Detected chips %d size %d\n", ao_m25_numchips, ao_m25_total); for (chip = 0; chip < ao_m25_numchips; chip++) - printf ("Flash chip %d select %02x size %d manf %02x type %02x cap %02x uid %02x\n", + printf ("Flash chip %d select %02x size %d\n", chip, ao_m25_pin[chip], ao_m25_size[chip]); printf ("Available chips:\n"); |
