Fix indention of wfx_skb_dtor().

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20200515083325.378539-7-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jérôme Pouiller 2020-05-15 10:33:12 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 6598b12d66
Коммит d64d737668
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -484,9 +484,9 @@ static void wfx_skb_dtor(struct wfx_dev *wdev,
struct hif_msg *hif = (struct hif_msg *)skb->data;
struct hif_req_tx *req = (struct hif_req_tx *)hif->body;
struct wfx_vif *wvif = wdev_to_wvif(wdev, hif->interface);
unsigned int offset = sizeof(struct hif_req_tx) +
sizeof(struct hif_msg) +
req->data_flags.fc_offset;
unsigned int offset = sizeof(struct hif_msg) +
sizeof(struct hif_req_tx) +
req->data_flags.fc_offset;
WARN_ON(!wvif);
skb_pull(skb, offset);