summaryrefslogtreecommitdiffstats
path: root/nic3com.c
diff options
context:
space:
mode:
Diffstat (limited to 'nic3com.c')
-rw-r--r--nic3com.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/nic3com.c b/nic3com.c
index 6e3fc8b81..14108f0f4 100644
--- a/nic3com.c
+++ b/nic3com.c
@@ -35,7 +35,7 @@ struct nic3com_data {
uint16_t id;
};
-const struct dev_entry nics_3com[] = {
+static const struct dev_entry nics_3com[] = {
/* 3C90xB */
{0x10b7, 0x9055, OK, "3COM", "3C90xB: PCI 10/100 Mbps; shared 10BASE-T/100BASE-TX"},
{0x10b7, 0x9001, NT, "3COM", "3C90xB: PCI 10/100 Mbps; shared 10BASE-T/100BASE-T4" },
@@ -101,7 +101,7 @@ static int nic3com_shutdown(void *par_data)
return 0;
}
-int nic3com_init(void)
+static int nic3com_init(void)
{
struct pci_dev *dev = NULL;
uint32_t io_base_addr = 0;
@@ -169,6 +169,16 @@ init_err_cleanup_exit:
return 1;
}
+const struct programmer_entry programmer_nic3com = {
+ .name = "nic3com",
+ .type = PCI,
+ .devs.dev = nics_3com,
+ .init = nic3com_init,
+ .map_flash_region = fallback_map,
+ .unmap_flash_region = fallback_unmap,
+ .delay = internal_delay,
+};
+
#else
#error PCI port I/O access is not supported on this architecture yet.
#endif