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

Commit 4483589f authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

cxgb4: Remove unnecessary struct in6_addr * casts



Just use the address of the in6_addr.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c42e2533
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -4310,8 +4310,7 @@ static int clip_add(struct net_device *event_dev, struct inet6_ifaddr *ifa,
	if (cxgb4_netdev(event_dev)) {
		switch (event) {
		case NETDEV_UP:
			ret = cxgb4_clip_get(event_dev,
				(const struct in6_addr *)ifa->addr.s6_addr);
			ret = cxgb4_clip_get(event_dev, &ifa->addr);
			if (ret < 0) {
				rcu_read_unlock();
				return ret;
@@ -4319,8 +4318,7 @@ static int clip_add(struct net_device *event_dev, struct inet6_ifaddr *ifa,
			ret = NOTIFY_OK;
			break;
		case NETDEV_DOWN:
			cxgb4_clip_release(event_dev,
				(const struct in6_addr *)ifa->addr.s6_addr);
			cxgb4_clip_release(event_dev, &ifa->addr);
			ret = NOTIFY_OK;
			break;
		default:
@@ -4389,8 +4387,7 @@ static int update_dev_clip(struct net_device *root_dev, struct net_device *dev)

	read_lock_bh(&idev->lock);
	list_for_each_entry(ifa, &idev->addr_list, if_list) {
		ret = cxgb4_clip_get(dev,
				(const struct in6_addr *)ifa->addr.s6_addr);
		ret = cxgb4_clip_get(dev, &ifa->addr);
		if (ret < 0)
			break;
	}