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

Commit a31f9314 authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo
Browse files

rsi: remove redundant duplicate assignment of buffer_size



Variable buffer_size is re-assigned the same value, this duplicated
assignment is redundant and can be removed.

Cleans up clang warning:
drivers/net/wireless/rsi/rsi_91x_usb.c:140:4: warning: Value stored
to 'buffer_size' is never read

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 44f98a93
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -140,7 +140,6 @@ static int rsi_find_bulk_in_and_out_endpoints(struct usb_interface *interface,
			buffer_size = endpoint->wMaxPacketSize;
			buffer_size = endpoint->wMaxPacketSize;
			dev->bulkout_endpoint_addr[bout_found] =
			dev->bulkout_endpoint_addr[bout_found] =
				endpoint->bEndpointAddress;
				endpoint->bEndpointAddress;
			buffer_size = endpoint->wMaxPacketSize;
			dev->bulkout_size[bout_found] = buffer_size;
			dev->bulkout_size[bout_found] = buffer_size;
			bout_found++;
			bout_found++;
		}
		}