mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 11:50:43 +09:00
net: ipv6: Add missing const to ipv6_chk_addr
The net_device used by ipv6_chk_addr is const in some users so add a
const here, fixing a warning following mainline commit 6bc19fb82d
(Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net) from
David S. Miller.
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
@@ -38,7 +38,7 @@ struct pingv6_ops {
|
||||
void (*ipv6_icmp_error)(struct sock *sk, struct sk_buff *skb, int err,
|
||||
__be16 port, u32 info, u8 *payload);
|
||||
int (*ipv6_chk_addr)(struct net *net, const struct in6_addr *addr,
|
||||
struct net_device *dev, int strict);
|
||||
const struct net_device *dev, int strict);
|
||||
};
|
||||
|
||||
struct ping_table {
|
||||
|
||||
@@ -73,7 +73,7 @@ int dummy_icmpv6_err_convert(u8 type, u8 code, int *err)
|
||||
void dummy_ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
|
||||
__be16 port, u32 info, u8 *payload) {}
|
||||
int dummy_ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
|
||||
struct net_device *dev, int strict)
|
||||
const struct net_device *dev, int strict)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user