[coreboot-gerrit] Patch set updated for coreboot: 5b2c86e drivers/net/ne2k.c: Collect headers and defines to top of file

Edward O'Callaghan (eocallaghan@alterapraxis.com) gerrit at coreboot.org
Thu Nov 6 22:37:01 CET 2014


Edward O'Callaghan (eocallaghan at alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7292

-gerrit

commit 5b2c86e62658a95c93be95837c0961fa6da9c550
Author: Edward O'Callaghan <eocallaghan at alterapraxis.com>
Date:   Fri Oct 31 12:37:49 2014 +1100

    drivers/net/ne2k.c: Collect headers and defines to top of file
    
    Change-Id: I2ffb0dd9fe400132f6d430f115f962b5f8578efa
    Signed-off-by: Edward O'Callaghan <eocallaghan at alterapraxis.com>
---
 src/drivers/net/ne2k.c | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/src/drivers/net/ne2k.c b/src/drivers/net/ne2k.c
index b678d79..250baf7 100644
--- a/src/drivers/net/ne2k.c
+++ b/src/drivers/net/ne2k.c
@@ -27,6 +27,21 @@ SMC8416 PIO support added by Andrew Bettison (andrewb at zip.com.au) on 4/3/02
 
 */
 
+#include <arch/io.h>
+#include <console/console.h>
+#include <console/ne2k.h>
+#include <delay.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+#include <device/pci_ops.h>
+#include <stdlib.h>
+#include <string.h>
+#include <ip_checksum.h>
+
+#include "ns8390.h"
+
+
 #define ETH_ALEN		6	/* Size of Ethernet address */
 #define ETH_HLEN		14	/* Size of ethernet header */
 #define	ETH_ZLEN		60	/* Minimum packet */
@@ -34,15 +49,11 @@ SMC8416 PIO support added by Andrew Bettison (andrewb at zip.com.au) on 4/3/02
 #define ETH_DATA_ALIGN		2	/* Amount needed to align the data after an ethernet header */
 #define	ETH_MAX_MTU		(ETH_FRAME_LEN-ETH_HLEN)
 
-#include "ns8390.h"
-#include <ip_checksum.h>
-#include <console/ne2k.h>
-#include <arch/io.h>
-
 #define MEM_SIZE MEM_32768
 #define TX_START 64
 #define RX_START (64 + D8390_TXBUF_SIZE)
 
+
 static unsigned int get_count(unsigned int eth_nic_base)
 {
 	unsigned int ret;
@@ -415,17 +426,6 @@ int ne2k_init(unsigned int eth_nic_base) {
 
 #else
 
-#include <delay.h>
-#include <stdlib.h>
-#include <string.h>
-#include <arch/io.h>
-
-#include <console/console.h>
-#include <device/device.h>
-#include <device/pci.h>
-#include <device/pci_ids.h>
-#include <device/pci_ops.h>
-
 static void read_resources(struct device *dev)
 {
 	struct resource *res;
@@ -455,4 +455,4 @@ static const struct pci_driver ne2k_driver __pci_driver = {
         .device = 0x8029,
 };
 
-#endif
+#endif /* __PRE_RAM__ */



More information about the coreboot-gerrit mailing list