diff options
author | Anton Kling <anton@kling.gg> | 2023-11-28 20:11:05 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-28 20:12:20 +0100 |
commit | d07fa25e04a19ccb9aa25bb6e2156d23d213db77 (patch) | |
tree | 25f2e4a6301f3ad7c5b158e74966a394862fdf39 /kernel/network/arp.c | |
parent | 636858dbbd48ed9f5073793b46740302aa202f43 (diff) |
Meta: Apply new clang-format rules to kernel
Diffstat (limited to 'kernel/network/arp.c')
-rw-r--r-- | kernel/network/arp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/network/arp.c b/kernel/network/arp.c index baff528..6e589ec 100644 --- a/kernel/network/arp.c +++ b/kernel/network/arp.c @@ -14,10 +14,10 @@ struct ARP_DATA { u16 opcode; // ARP Operation Code u8 srchw[6]; // Source hardware address - hlen bytes (see above) u8 srcpr[4]; // Source protocol address - plen bytes (see above). - // If IPv4 can just be a "u32" type. + // If IPv4 can just be a "u32" type. u8 dsthw[6]; // Destination hardware address - hlen bytes (see above) u8 dstpr[4]; // Destination protocol address - plen bytes (see - // above). If IPv4 can just be a "u32" type. + // above). If IPv4 can just be a "u32" type. }; struct ARP_TABLE_ENTRY { |