Commit 59621662 authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Fix alignment to match open parenthesis in rtllib_rx.c



Add spaces and tabs to fix warning: Alignment should match open
parenthesis.

Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/20240612032230.9738-25-tdavies@darkphysics.net


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 123ee372
Loading
Loading
Loading
Loading
+18 −19
Original line number Diff line number Diff line
@@ -202,8 +202,7 @@ static int rtllib_frag_cache_invalidate(struct rtllib_device *ieee,
 */
static inline int
rtllib_rx_frame_mgmt(struct rtllib_device *ieee, struct sk_buff *skb,
			struct rtllib_rx_stats *rx_stats, u16 type,
			u16 stype)
		     struct rtllib_rx_stats *rx_stats, u16 type, u16 stype)
{
	/* On the struct stats definition there is written that
	 * this is not mandatory.... but seems that the probe
@@ -2559,7 +2558,7 @@ static void rtllib_rx_mgt(struct rtllib_device *ieee,
			schedule_work(&ieee->ps_task);
	} else if (ieee80211_is_probe_resp(header->frame_control)) {
		netdev_dbg(ieee->dev, "received PROBE RESPONSE\n");
		rtllib_process_probe_response(ieee,
			      (struct rtllib_probe_response *)header, stats);
		rtllib_process_probe_response(ieee, (struct rtllib_probe_response *)header,
					      stats);
	}
}