Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3e83d6d authored by Andrew Morton's avatar Andrew Morton Committed by David S. Miller
Browse files

[BRIDGE]: Remove duplicate const from is_link_local() argument type.

parent 34001127
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ static int br_handle_local_finish(struct sk_buff *skb)
/* Does address match the link local multicast address.
 * 01:80:c2:00:00:0X
 */
static inline int is_link_local(const const unsigned char *dest)
static inline int is_link_local(const unsigned char *dest)
{
	return memcmp(dest, br_group_address, 5) == 0 && (dest[5] & 0xf0) == 0;
}