]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: netconsole: Remove non-DM_ETH code
authorTom Rini <trini@konsulko.com>
Sun, 27 Nov 2022 15:25:18 +0000 (10:25 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 7 Dec 2022 21:04:17 +0000 (16:04 -0500)
As DM_ETH is required for all network drivers, it's now safe to
remove the non-DM_ETH support code.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/net/netconsole.c

index cec96c571504b13128536be0d287135967e1779d..1e52917ff2c3a9f0dc79dfa45948ae7933476e66 100644 (file)
@@ -172,11 +172,7 @@ int nc_input_packet(uchar *pkt, struct in_addr src_ip, unsigned dest_port,
 
 static void nc_send_packet(const char *buf, int len)
 {
-#ifdef CONFIG_DM_ETH
        struct udevice *eth;
-#else
-       struct eth_device *eth;
-#endif
        int inited = 0;
        uchar *pkt;
        uchar *ether;
@@ -298,11 +294,7 @@ static int nc_stdio_getc(struct stdio_dev *dev)
 
 static int nc_stdio_tstc(struct stdio_dev *dev)
 {
-#ifdef CONFIG_DM_ETH
        struct udevice *eth;
-#else
-       struct eth_device *eth;
-#endif
 
        if (input_recursion)
                return 0;