You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
staging: Fix typo in multiple files
Collect spelling typo in multiple files within staging directory. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
73e18893dd
commit
73e2918990
@@ -835,7 +835,7 @@ int reset_card_proc(PMINI_ADAPTER ps_adapter)
|
|||||||
Bcm_kill_all_URBs(psIntfAdapter);
|
Bcm_kill_all_URBs(psIntfAdapter);
|
||||||
/* Reset the UMA-B Device */
|
/* Reset the UMA-B Device */
|
||||||
if (ps_adapter->chip_id >= T3LPB) {
|
if (ps_adapter->chip_id >= T3LPB) {
|
||||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "Reseting UMA-B\n");
|
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "Resetting UMA-B\n");
|
||||||
retval = usb_reset_device(psIntfAdapter->udev);
|
retval = usb_reset_device(psIntfAdapter->udev);
|
||||||
psIntfAdapter->psAdapter->StopAllXaction = FALSE;
|
psIntfAdapter->psAdapter->StopAllXaction = FALSE;
|
||||||
|
|
||||||
|
|||||||
@@ -715,7 +715,7 @@ static int dt9812_probe(struct usb_interface *interface,
|
|||||||
iface_desc = interface->cur_altsetting;
|
iface_desc = interface->cur_altsetting;
|
||||||
|
|
||||||
if (iface_desc->desc.bNumEndpoints != 5) {
|
if (iface_desc->desc.bNumEndpoints != 5) {
|
||||||
err("Wrong number of endpints.");
|
err("Wrong number of endpoints.");
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -353,7 +353,7 @@ struct rtdPrivate {
|
|||||||
|
|
||||||
unsigned long intCount; /* interrupt count */
|
unsigned long intCount; /* interrupt count */
|
||||||
long aiCount; /* total transfer size (samples) */
|
long aiCount; /* total transfer size (samples) */
|
||||||
int transCount; /* # to tranfer data. 0->1/2FIFO */
|
int transCount; /* # to transfer data. 0->1/2FIFO */
|
||||||
int flags; /* flag event modes */
|
int flags; /* flag event modes */
|
||||||
|
|
||||||
/* PCI device info */
|
/* PCI device info */
|
||||||
@@ -1989,7 +1989,7 @@ static int rtd_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||||||
(TRANS_TARGET_PERIOD * cmd->chanlist_len) /
|
(TRANS_TARGET_PERIOD * cmd->chanlist_len) /
|
||||||
cmd->scan_begin_arg;
|
cmd->scan_begin_arg;
|
||||||
if (devpriv->transCount < cmd->chanlist_len) {
|
if (devpriv->transCount < cmd->chanlist_len) {
|
||||||
/* tranfer after each scan (and avoid 0) */
|
/* transfer after each scan (and avoid 0) */
|
||||||
devpriv->transCount = cmd->chanlist_len;
|
devpriv->transCount = cmd->chanlist_len;
|
||||||
} else { /* make a multiple of scan length */
|
} else { /* make a multiple of scan length */
|
||||||
devpriv->transCount =
|
devpriv->transCount =
|
||||||
@@ -2005,12 +2005,12 @@ static int rtd_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||||||
devpriv->transCount = 0;
|
devpriv->transCount = 0;
|
||||||
devpriv->flags &= ~SEND_EOS;
|
devpriv->flags &= ~SEND_EOS;
|
||||||
} else {
|
} else {
|
||||||
/* interrupt for each tranfer */
|
/* interrupt for each transfer */
|
||||||
RtdAboutCounter(dev, devpriv->transCount - 1);
|
RtdAboutCounter(dev, devpriv->transCount - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
DPRINTK
|
DPRINTK
|
||||||
("rtd520: scanLen=%d tranferCount=%d fifoLen=%d\n scanTime(ns)=%d flags=0x%x\n",
|
("rtd520: scanLen=%d transferCount=%d fifoLen=%d\n scanTime(ns)=%d flags=0x%x\n",
|
||||||
cmd->chanlist_len, devpriv->transCount, devpriv->fifoLen,
|
cmd->chanlist_len, devpriv->transCount, devpriv->fifoLen,
|
||||||
cmd->scan_begin_arg, devpriv->flags);
|
cmd->scan_begin_arg, devpriv->flags);
|
||||||
} else { /* unknown timing, just use 1/2 FIFO */
|
} else { /* unknown timing, just use 1/2 FIFO */
|
||||||
|
|||||||
@@ -6,6 +6,6 @@ Todo:
|
|||||||
- testing?
|
- testing?
|
||||||
- handle churn in v4l layer.
|
- handle churn in v4l layer.
|
||||||
|
|
||||||
Please send patchs to Greg Kroah-Hartman <greg@kroah.com> and Cc: Ross
|
Please send patches to Greg Kroah-Hartman <greg@linuxfoundation.org> and Cc: Ross
|
||||||
Cohen <rcohen@snurgle.org> as well.
|
Cohen <rcohen@snurgle.org> as well.
|
||||||
|
|
||||||
|
|||||||
@@ -1905,7 +1905,7 @@ associate_complete:
|
|||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
ieee->softmac_stats.rx_auth_rs_err++;
|
ieee->softmac_stats.rx_auth_rs_err++;
|
||||||
IEEE80211_DEBUG_MGMT("Authentication respose status code 0x%x",errcode);
|
IEEE80211_DEBUG_MGMT("Authentication response status code 0x%x",errcode);
|
||||||
ieee80211_associate_abort(ieee);
|
ieee80211_associate_abort(ieee);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -216,7 +216,7 @@ static bool firmware_check_ready(struct net_device *dev,
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
rt_status = false;
|
rt_status = false;
|
||||||
RT_TRACE(COMP_FIRMWARE, "Unknown firware status");
|
RT_TRACE(COMP_FIRMWARE, "Unknown firmware status");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -689,7 +689,7 @@ void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel)
|
|||||||
case RF_8258:
|
case RF_8258:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
RT_TRACE(COMP_ERR, "unknown rf chip in funtion %s()\n",
|
RT_TRACE(COMP_ERR, "unknown rf chip in function %s()\n",
|
||||||
__func__);
|
__func__);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -671,7 +671,7 @@ void RxReorderIndicatePacket( struct ieee80211_device *ieee,
|
|||||||
index = 1;
|
index = 1;
|
||||||
} else {
|
} else {
|
||||||
/* Current packet is going to be inserted into pending list.*/
|
/* Current packet is going to be inserted into pending list.*/
|
||||||
//IEEE80211_DEBUG(IEEE80211_DL_REORDER,"%s(): We RX no ordered packed, insert to orderd list\n",__FUNCTION__);
|
//IEEE80211_DEBUG(IEEE80211_DL_REORDER,"%s(): We RX no ordered packed, insert to ordered list\n",__FUNCTION__);
|
||||||
if(!list_empty(&ieee->RxReorder_Unused_List)) {
|
if(!list_empty(&ieee->RxReorder_Unused_List)) {
|
||||||
pReorderEntry = (PRX_REORDER_ENTRY)list_entry(ieee->RxReorder_Unused_List.next,RX_REORDER_ENTRY,List);
|
pReorderEntry = (PRX_REORDER_ENTRY)list_entry(ieee->RxReorder_Unused_List.next,RX_REORDER_ENTRY,List);
|
||||||
list_del_init(&pReorderEntry->List);
|
list_del_init(&pReorderEntry->List);
|
||||||
|
|||||||
@@ -2062,7 +2062,7 @@ ieee80211_rx_frame_softmac(struct ieee80211_device *ieee, struct sk_buff *skb,
|
|||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
ieee->softmac_stats.rx_auth_rs_err++;
|
ieee->softmac_stats.rx_auth_rs_err++;
|
||||||
IEEE80211_DEBUG_MGMT("Authentication respose status code 0x%x",errcode);
|
IEEE80211_DEBUG_MGMT("Authentication response status code 0x%x",errcode);
|
||||||
ieee80211_associate_abort(ieee);
|
ieee80211_associate_abort(ieee);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2212,7 +2212,7 @@ void dump_dl_modules(struct bridge_dev_context *bridge_context)
|
|||||||
|
|
||||||
if (status) {
|
if (status) {
|
||||||
pr_debug(
|
pr_debug(
|
||||||
"%s: Failed to read dll_module stuct for 0x%x.\n",
|
"%s: Failed to read dll_module struct for 0x%x.\n",
|
||||||
__func__, module_dsp_addr);
|
__func__, module_dsp_addr);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ static inline const char *event_to_string(int event)
|
|||||||
case DSP_MMUFAULT: return "DSP_MMUFAULT"; break;
|
case DSP_MMUFAULT: return "DSP_MMUFAULT"; break;
|
||||||
case DSP_PWRERROR: return "DSP_PWRERROR"; break;
|
case DSP_PWRERROR: return "DSP_PWRERROR"; break;
|
||||||
case DSP_WDTOVERFLOW: return "DSP_WDTOVERFLOW"; break;
|
case DSP_WDTOVERFLOW: return "DSP_WDTOVERFLOW"; break;
|
||||||
default: return "unkown event"; break;
|
default: return "unknown event"; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Once the client knows the list of exported USB devices it may decide to use one
|
|||||||
of them. First the client opens a TCP/IP connection towards the server and
|
of them. First the client opens a TCP/IP connection towards the server and
|
||||||
sends an OP_REQ_IMPORT packet. The server replies with OP_REP_IMPORT. If the
|
sends an OP_REQ_IMPORT packet. The server replies with OP_REP_IMPORT. If the
|
||||||
import was successful the TCP/IP connection remains open and will be used
|
import was successful the TCP/IP connection remains open and will be used
|
||||||
to trasfer the URB traffic between the client and the server. The client may
|
to transfer the URB traffic between the client and the server. The client may
|
||||||
send two types of packets: the USBIP_CMD_SUBMIT to submit an URB, and
|
send two types of packets: the USBIP_CMD_SUBMIT to submit an URB, and
|
||||||
USBIP_CMD_UNLINK to unlink a previously submitted URB. The answers of the
|
USBIP_CMD_UNLINK to unlink a previously submitted URB. The answers of the
|
||||||
server may be USBIP_RET_SUBMIT and USBIP_RET_UNLINK respectively.
|
server may be USBIP_RET_SUBMIT and USBIP_RET_UNLINK respectively.
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ static void pio2_gpio_set(struct gpio_chip *chip, unsigned int offset,
|
|||||||
if ((card->bank[PIO2_CHANNEL_BANK[offset]].config == INPUT) |
|
if ((card->bank[PIO2_CHANNEL_BANK[offset]].config == INPUT) |
|
||||||
(card->bank[PIO2_CHANNEL_BANK[offset]].config == NOFIT)) {
|
(card->bank[PIO2_CHANNEL_BANK[offset]].config == NOFIT)) {
|
||||||
|
|
||||||
dev_err(&card->vdev->dev, "Channel not availabe as output\n");
|
dev_err(&card->vdev->dev, "Channel not available as output\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user