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

Commit ee1e755f authored by Ivo van Doorn's avatar Ivo van Doorn Committed by John W. Linville
Browse files

rt2x00: Reduce indenting



Cosmetic change, reduce indenting.

Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Acked-by: default avatarHelmut Schaa <helmut.schaa@googlemail.com>
Acked-by: default avatarGertjan van Wingerde <gwingerde@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 93331458
Loading
Loading
Loading
Loading
+14 −13
Original line number Original line Diff line number Diff line
@@ -232,7 +232,9 @@ static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
	struct queue_entry_priv_usb *entry_priv = entry->priv_data;
	struct queue_entry_priv_usb *entry_priv = entry->priv_data;
	u32 length;
	u32 length;


	if (test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags)) {
	if (!test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags))
		return;

	/*
	/*
	 * USB devices cannot blindly pass the skb->len as the
	 * USB devices cannot blindly pass the skb->len as the
	 * length of the data to usb_fill_bulk_urb. Pass the skb
	 * length of the data to usb_fill_bulk_urb. Pass the skb
@@ -247,7 +249,6 @@ static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)


	usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
	usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
}
}
}


void rt2x00usb_kick_tx_queue(struct data_queue *queue)
void rt2x00usb_kick_tx_queue(struct data_queue *queue)
{
{