Commit c0141859 authored by Chad Williamson's avatar Chad Williamson Committed by Greg Kroah-Hartman

Staging: silicom: remove the typedef for bpmod_info_t

Remove the bpmod_info_t typedef from bpctl_mod.c, replacing it with
struct bpmod_info.
Signed-off-by: default avatarChad Williamson <chad@dahc.us>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent efb39e4e
...@@ -5971,7 +5971,7 @@ enum board_type { ...@@ -5971,7 +5971,7 @@ enum board_type {
PE210G2BPi40, PE210G2BPi40,
}; };
typedef struct _bpmod_info_t { struct bpmod_info {
unsigned int vendor; unsigned int vendor;
unsigned int device; unsigned int device;
unsigned int subvendor; unsigned int subvendor;
...@@ -5979,7 +5979,7 @@ typedef struct _bpmod_info_t { ...@@ -5979,7 +5979,7 @@ typedef struct _bpmod_info_t {
unsigned int index; unsigned int index;
char *bp_name; char *bp_name;
} bpmod_info_t; };
typedef struct _dev_desc { typedef struct _dev_desc {
char *name; char *name;
...@@ -6155,7 +6155,7 @@ dev_desc_t dev_desc[] = { ...@@ -6155,7 +6155,7 @@ dev_desc_t dev_desc[] = {
{0}, {0},
}; };
static bpmod_info_t tx_ctl_pci_tbl[] = { static struct bpmod_info tx_ctl_pci_tbl[] = {
{0x8086, 0x107a, SILICOM_SVID, SILICOM_PXG2BPFI_SSID, PXG2BPFI, {0x8086, 0x107a, SILICOM_SVID, SILICOM_PXG2BPFI_SSID, PXG2BPFI,
"PXG2BPFI-SD"}, "PXG2BPFI-SD"},
{0x8086, 0x107a, SILICOM_SVID, SILICOM_PXG2BPFIL_SSID, PXG2BPFIL, {0x8086, 0x107a, SILICOM_SVID, SILICOM_PXG2BPFIL_SSID, PXG2BPFIL,
...@@ -6653,7 +6653,7 @@ static void find_fw(struct bpctl_dev *dev) ...@@ -6653,7 +6653,7 @@ static void find_fw(struct bpctl_dev *dev)
printk("firmware version: 0x%x\n", dev->bp_fw_ver); printk("firmware version: 0x%x\n", dev->bp_fw_ver);
} }
static int init_one(struct bpctl_dev *dev, bpmod_info_t *info, struct pci_dev *pdev1) static int init_one(struct bpctl_dev *dev, struct bpmod_info *info, struct pci_dev *pdev1)
{ {
unsigned long mmio_start, mmio_len; unsigned long mmio_start, mmio_len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment