diff options
author | Helge Deller <deller@gmx.de> | 2019-09-05 16:59:13 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2019-09-06 00:03:28 +0200 |
commit | 544f448599134ffee9ef35d685f933bab708a215 (patch) | |
tree | 7a2476f190c77af03488ca6a35089b13f4dee904 /drivers/parisc/dino.c | |
parent | b0a26f11ee3625653e8ef6e133bc73779b5a6b17 (diff) | |
download | linux-544f448599134ffee9ef35d685f933bab708a215.tar.bz2 |
parisc: Save some bytes in dino driver
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/parisc/dino.c')
-rw-r--r-- | drivers/parisc/dino.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/parisc/dino.c b/drivers/parisc/dino.c index 3c730103e637..b04493d0e1fa 100644 --- a/drivers/parisc/dino.c +++ b/drivers/parisc/dino.c @@ -6,7 +6,7 @@ ** (c) Copyright 1999 SuSE GmbH ** (c) Copyright 1999,2000 Hewlett-Packard Company ** (c) Copyright 2000 Grant Grundler -** (c) Copyright 2006 Helge Deller +** (c) Copyright 2006-2019 Helge Deller ** ** ** This module provides access to Dino PCI bus (config/IOport spaces) @@ -863,14 +863,14 @@ static int __init dino_common_init(struct parisc_device *dev, #define CUJO_RAVEN_BADPAGE 0x01003000UL #define CUJO_FIREHAWK_BADPAGE 0x01607000UL -static const char *dino_vers[] = { +static const char dino_vers[][4] = { "2.0", "2.1", "3.0", "3.1" }; -static const char *cujo_vers[] = { +static const char cujo_vers[][4] = { "1.0", "2.0" }; |