]> git.sur5r.net Git - u-boot/blobdiff - drivers/net/dc2114x.c
e1000: Rewrite EEPROM checksum error to give more information
[u-boot] / drivers / net / dc2114x.c
index 51e7c19e03d418d26f9e6d5c9d6d2dc106b04b00..0fb616ac20bf85f94b28e23700bed4e9b77bbeba 100644 (file)
@@ -245,15 +245,17 @@ int dc21x4x_initialize(bd_t *bis)
                pci_write_config_word(devbusfn, PCI_COMMAND, status);
 
                pci_read_config_word(devbusfn, PCI_COMMAND, &status);
+#ifdef CONFIG_TULIP_USE_IO
                if (!(status & PCI_COMMAND_IO)) {
                        printf("Error: Can not enable I/O access.\n");
                        continue;
                }
-
-               if (!(status & PCI_COMMAND_IO)) {
-                       printf("Error: Can not enable I/O access.\n");
+#else
+               if (!(status & PCI_COMMAND_MEMORY)) {
+                       printf("Error: Can not enable MEMORY access.\n");
                        continue;
                }
+#endif
 
                if (!(status & PCI_COMMAND_MASTER)) {
                        printf("Error: Can not enable Bus Mastering.\n");