diff options
author | Joe Perches <joe@perches.com> | 2010-12-21 05:16:10 -0500 |
---|---|---|
committer | Joe Perches <joe@perches.com> | 2010-12-21 05:16:10 -0500 |
commit | 215faf9c5f6e319e97edea9e178123e07825c14d (patch) | |
tree | 32fb283f64110ad634a37dc2e133cb91a97988c5 /drivers/net/can | |
parent | 75a84eb5d144dc761e1bb0f7dcacbf2b5cee562c (diff) |
drivers/net/*/: Use static const
Using static const generally increases object text and decreases data size.
It also generally decreases overall object size.
Signed-off-by: Joe Perches <joe@perches.com>
Diffstat (limited to 'drivers/net/can')
-rw-r--r-- | drivers/net/can/sja1000/plx_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/sja1000/plx_pci.c b/drivers/net/can/sja1000/plx_pci.c index 437b5c716a24..231385b8e08f 100644 --- a/drivers/net/can/sja1000/plx_pci.c +++ b/drivers/net/can/sja1000/plx_pci.c | |||
@@ -383,7 +383,7 @@ static void plx_pci_reset_marathon(struct pci_dev *pdev) | |||
383 | { | 383 | { |
384 | void __iomem *reset_addr; | 384 | void __iomem *reset_addr; |
385 | int i; | 385 | int i; |
386 | int reset_bar[2] = {3, 5}; | 386 | static const int reset_bar[2] = {3, 5}; |
387 | 387 | ||
388 | plx_pci_reset_common(pdev); | 388 | plx_pci_reset_common(pdev); |
389 | 389 | ||