diff options
author | Helge Deller <deller@gmx.de> | 2019-03-13 10:13:12 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2019-03-13 10:13:12 +0100 |
commit | f99fade453884818cb229693f5844f0656b0394f (patch) | |
tree | ce12f91567ec512ae164ab192234dc9b594549af | |
parent | 9253490ccaa5a7732cfb413af0566521f133a71c (diff) | |
download | seabios-hppa-f99fade453884818cb229693f5844f0656b0394f.zip seabios-hppa-f99fade453884818cb229693f5844f0656b0394f.tar.gz seabios-hppa-f99fade453884818cb229693f5844f0656b0394f.tar.bz2 |
Increase initial array size of parisc_devices[] since we reduced HPPA_MAX_CPUS to 8.
-rw-r--r-- | src/parisc/parisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c index d472697..19f2dd4 100644 --- a/src/parisc/parisc.c +++ b/src/parisc/parisc.c @@ -195,7 +195,7 @@ typedef struct { int add_addr[5]; } hppa_device_t; -static hppa_device_t parisc_devices[HPPA_MAX_CPUS+10] = { PARISC_DEVICE_LIST }; +static hppa_device_t parisc_devices[HPPA_MAX_CPUS+16] = { PARISC_DEVICE_LIST }; #define PARISC_KEEP_LIST \ GSC_HPA,\ |