diff options
author | David S. Miller <davem@davemloft.net> | 2009-01-24 01:28:48 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-24 01:28:48 -0500 |
commit | 0db155de988031f925096a7df1bf9633790a2c18 (patch) | |
tree | 09f6d3c8d9254b6120c511b0633a07f50293de0b /include/linux/com20020.h | |
parent | 92af3e95e4896452ab33b1841c3e9a9d50658064 (diff) |
com20020: Fix allyesconfig build failure.
Reported by Stephen Rothwell.
Due to missing 'extern' in the com20020_netdev_ops declaration,
each file that includes linux/com20020.h gets another copy
defined in it's resulting object file.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/com20020.h')
-rw-r--r-- | include/linux/com20020.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/com20020.h b/include/linux/com20020.h index 350afa773f8f..5dcfb944b6ce 100644 --- a/include/linux/com20020.h +++ b/include/linux/com20020.h | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | int com20020_check(struct net_device *dev); | 30 | int com20020_check(struct net_device *dev); |
31 | int com20020_found(struct net_device *dev, int shared); | 31 | int com20020_found(struct net_device *dev, int shared); |
32 | const struct net_device_ops com20020_netdev_ops; | 32 | extern const struct net_device_ops com20020_netdev_ops; |
33 | 33 | ||
34 | /* The number of low I/O ports used by the card. */ | 34 | /* The number of low I/O ports used by the card. */ |
35 | #define ARCNET_TOTAL_SIZE 8 | 35 | #define ARCNET_TOTAL_SIZE 8 |