diff options
author | Kuniyuki Iwashima <kuniyu@amazon.com> | 2023-03-27 16:54:55 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-03-29 08:22:52 +0100 |
commit | be689c719eb6153b0fbd83536ae656dca8981f12 (patch) | |
tree | 384869b1ab47698cefacb5b7a0d4e10012ecf1eb /net/6lowpan/iphc.c | |
parent | 8cdc3223e78c43e1b60ea1c536a103e32fdca3c5 (diff) | |
download | linux-be689c719eb6153b0fbd83536ae656dca8981f12.tar.gz linux-be689c719eb6153b0fbd83536ae656dca8981f12.tar.bz2 linux-be689c719eb6153b0fbd83536ae656dca8981f12.zip |
6lowpan: Remove redundant initialisation.
We'll call memset(&tmp, 0, sizeof(tmp)) later.
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/6lowpan/iphc.c')
-rw-r--r-- | net/6lowpan/iphc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/6lowpan/iphc.c b/net/6lowpan/iphc.c index 52fad5dad9f7..e116d308a8df 100644 --- a/net/6lowpan/iphc.c +++ b/net/6lowpan/iphc.c @@ -848,7 +848,7 @@ static u8 lowpan_compress_ctx_addr(u8 **hc_ptr, const struct net_device *dev, const struct lowpan_iphc_ctx *ctx, const unsigned char *lladdr, bool sam) { - struct in6_addr tmp = {}; + struct in6_addr tmp; u8 dam; switch (lowpan_dev(dev)->lltype) { |