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

Commit ba987e51 authored by Bart Van Assche's avatar Bart Van Assche Committed by Doug Ledford
Browse files

iw_cxgb4: Convert a __force cast



__force casts should be avoided if there is a better alternative.
Hence modify the comparison of s_addr with INADDR_ANY such that the
__force cast is no longer necessary.

Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Cc: Steve Wise <swise@opengridcomputing.com>
Cc: Vipul Pandya <vipul@chelsio.com>
Acked-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 64bec74a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -3300,7 +3300,7 @@ int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
		/*
		/*
		 * Handle loopback requests to INADDR_ANY.
		 * Handle loopback requests to INADDR_ANY.
		 */
		 */
		if ((__force int)raddr->sin_addr.s_addr == INADDR_ANY) {
		if (raddr->sin_addr.s_addr == htonl(INADDR_ANY)) {
			err = pick_local_ipaddrs(dev, cm_id);
			err = pick_local_ipaddrs(dev, cm_id);
			if (err)
			if (err)
				goto fail1;
				goto fail1;