cxgb4: move DCB version extern to header file
Move the DCB version string array extern to header file.
Fixes following sparse warning:
cxgb4_dcb.c:13:12: warning: symbol 'dcb_ver_array' was not declared.
Should it be static?
Fixes: ebddd97afb
("cxgb4: add support to display DCB info")
Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2f6670165d
commit
bab3bcf3e9
|
@ -136,6 +136,9 @@ static inline __u8 bitswap_1(unsigned char val)
|
|||
((val & 0x02) << 5) |
|
||||
((val & 0x01) << 7);
|
||||
}
|
||||
|
||||
extern const char * const dcb_ver_array[];
|
||||
|
||||
#define CXGB4_DCB_ENABLED true
|
||||
|
||||
#else /* !CONFIG_CHELSIO_T4_DCB */
|
||||
|
|
|
@ -2379,7 +2379,6 @@ static const struct file_operations rss_vf_config_debugfs_fops = {
|
|||
};
|
||||
|
||||
#ifdef CONFIG_CHELSIO_T4_DCB
|
||||
extern char *dcb_ver_array[];
|
||||
|
||||
/* Data Center Briging information for each port.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue