]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:26 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:18 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
net/bootp.h
net/dns.c
net/net.c
net/nfs.c
net/nfs.h
net/rarp.c
net/tftp.c

index 4e32b19d424bee075d95614c1fd4ffb85350ee67..521d38f3528930571caaf2fbe2d77fcef28ee4c9 100644 (file)
@@ -65,7 +65,6 @@ struct bootp_hdr {
 extern u32     bootp_id;               /* ID of cur BOOTP request      */
 extern int     bootp_try;
 
-
 /* Send a BOOTP request */
 void bootp_reset(void);
 void bootp_request(void);
index c2f0ab98c8d040945551218ec4658412d8ec04c9..08ad54a04d552c245ef6f4ad12060269643dae20 100644 (file)
--- a/net/dns.c
+++ b/net/dns.c
@@ -121,7 +121,6 @@ static void dns_handler(uchar *pkt, unsigned dest, struct in_addr sip,
        char ip_str[22];
        struct in_addr ip_addr;
 
-
        debug("%s\n", __func__);
        if (dest != dns_our_port)
                return;
index 23b5d3356afa1937ad8ef532026dde281d57c779..d9bc9df643f9b7e827cfe685f301a5535240bc1d 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -80,7 +80,6 @@
  *     Next step:      none
  */
 
-
 #include <bootstage.h>
 #include <command.h>
 #include <console.h>
index acc7106f10d4564ddea80d1280ba2f8cf605ce43..537d4c62de267527c85c5b1ddf2cda696f4ebae4 100644 (file)
--- a/net/nfs.c
+++ b/net/nfs.c
@@ -913,7 +913,6 @@ static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
        }
 }
 
-
 void nfs_start(void)
 {
        debug("%s\n", __func__);
index 68ada0efeb9ba370e69740438cb27087e9ac8deb..6bf1cb76bd58b0ca123f85d834355e30bf649811 100644 (file)
--- a/net/nfs.h
+++ b/net/nfs.h
@@ -81,7 +81,6 @@ struct rpc_t {
 };
 void nfs_start(void);  /* Begin NFS */
 
-
 /**********************************************************************/
 
 #endif /* __NFS_H__ */
index a6b564e314d47d2c5b55e2c3b4c5a3f1130b471f..a346e067cb948a3a69a5f0eaacb4dc63fbc3f9ab 100644 (file)
@@ -45,7 +45,6 @@ void rarp_receive(struct ip_udp_hdr *ip, unsigned len)
        }
 }
 
-
 /*
  *     Timeout on BOOTP request.
  */
@@ -60,7 +59,6 @@ static void rarp_timeout_handler(void)
        }
 }
 
-
 void rarp_request(void)
 {
        uchar *pkt;
index 6b16bdcbe4c2e685269177da4b7f9245d9ac7e57..65c39d7fb7089abbf989b5213da26667ee0f3d62 100644 (file)
@@ -694,7 +694,6 @@ static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
        }
 }
 
-
 static void tftp_timeout_handler(void)
 {
        if (++timeout_count > timeout_count_max) {