Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8192e: Fix pointer type declaration style errors

This fixes the following checkpatch.pl errors:

drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c:1290 error: "foo* bar"
should be "foo *bar"

drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c:1305 error: "foo * bar"
should be "foo *bar"

Signed-off-by: John Ledbetter <john@throttle.io>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

John Ledbetter and committed by
Greg Kroah-Hartman
3f8ddea0 f582d9a8

+2 -2
+2 -2
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
··· 1287 1287 1288 1288 void rtl8192_tx_fill_cmd_desc(struct net_device *dev, 1289 1289 struct tx_desc_cmd *entry, 1290 - struct cb_desc *cb_desc, struct sk_buff* skb) 1290 + struct cb_desc *cb_desc, struct sk_buff *skb) 1291 1291 { 1292 1292 struct r8192_priv *priv = rtllib_priv(dev); 1293 1293 dma_addr_t mapping = pci_map_single(priv->pdev, skb->data, skb->len, ··· 1302 1302 if (cb_desc->bCmdOrInit == DESC_PACKET_TYPE_INIT) { 1303 1303 entry->CmdInit = DESC_PACKET_TYPE_INIT; 1304 1304 } else { 1305 - struct tx_desc * entry_tmp = (struct tx_desc *)entry; 1305 + struct tx_desc *entry_tmp = (struct tx_desc *)entry; 1306 1306 1307 1307 entry_tmp->CmdInit = DESC_PACKET_TYPE_NORMAL; 1308 1308 entry_tmp->Offset = sizeof(struct tx_fwinfo_8190pci) + 8;