Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363821
b: refs/heads/master
c: 10f035a
h: refs/heads/master
i:
  363819: 25c486c
v: v3
  • Loading branch information
Masanari Iida authored and Greg Kroah-Hartman committed Apr 1, 2013
1 parent 846563a commit cb96ec7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b43f9b59e65e1d4ff06474885b44515817868fdd
refs/heads/master: 10f035a0104234ca1147c88c5850e405ebc0e92e
10 changes: 5 additions & 5 deletions trunk/drivers/staging/csr/csr_wifi_hip_card_sdio_intr.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ static CsrResult handle_host_protocol(card_t *card, u8 *processed_something)
r = read_to_host_signals(card, &done);
if (r != CSR_RESULT_SUCCESS)
{
unifi_error(card->ospriv, "Error occured reading to-host signals\n");
unifi_error(card->ospriv, "Error occurred reading to-host signals\n");
return r;
}
if (done > 0)
Expand All @@ -899,7 +899,7 @@ static CsrResult handle_host_protocol(card_t *card, u8 *processed_something)
r = process_to_host_signals(card, &done);
if (r != CSR_RESULT_SUCCESS)
{
unifi_error(card->ospriv, "Error occured processing to-host signals\n");
unifi_error(card->ospriv, "Error occurred processing to-host signals\n");
return r;
}

Expand All @@ -908,7 +908,7 @@ static CsrResult handle_host_protocol(card_t *card, u8 *processed_something)
r = process_fh_cmd_queue(card, &done);
if (r != CSR_RESULT_SUCCESS)
{
unifi_error(card->ospriv, "Error occured processing from-host signals\n");
unifi_error(card->ospriv, "Error occurred processing from-host signals\n");
return r;
}
if (done > 0)
Expand All @@ -919,7 +919,7 @@ static CsrResult handle_host_protocol(card_t *card, u8 *processed_something)
r = process_fh_traffic_queue(card, &done);
if (r != CSR_RESULT_SUCCESS)
{
unifi_error(card->ospriv, "Error occured processing from-host data signals\n");
unifi_error(card->ospriv, "Error occurred processing from-host data signals\n");
return r;
}
if (done > 0)
Expand Down Expand Up @@ -1953,7 +1953,7 @@ static CsrResult check_fh_sig_slots(card_t *card, u16 needed, s32 *space_fh)
* in the from-host queue using the wire-format structures, as they arrive.
* All other requests are stored in the from-host queue using the host
* (cpu specific) structures. We use the is_packed member of the card_signal_t
* structure that describes the queue to make the distiction.
* structure that describes the queue to make the distinction.
* ---------------------------------------------------------------------------
*/
static CsrResult process_fh_cmd_queue(card_t *card, s32 *processed)
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/csr/csr_wifi_hip_chiphelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ CHIP_HELPER_LIST(C_DEC)
map that is part of the window and the size is the number of
visible words.
Some of the windows have thier lowest portion covered by
Some of the windows have their lowest portion covered by
registers. For these windows address is the first address
after the registers and size is the siave excluding the part
covered by registers.
Expand All @@ -375,7 +375,7 @@ CHIP_HELPER_LIST(C_DEC)
will be needed if the device is being booted from cold. These
register writes enable the clocks and setup the PLL to a basic
working state. SPI access might be unreliable until these writes
have occured (And they may take mulitple goes).
have occurred (And they may take mulitple goes).
*/
/* HostResetSequence
Expand Down
20 changes: 10 additions & 10 deletions trunk/drivers/staging/csr/csr_wifi_hip_unifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ typedef enum
UNIFI_TRAFFIC_Q_BE,
UNIFI_TRAFFIC_Q_VI,
UNIFI_TRAFFIC_Q_VO,
UNIFI_TRAFFIC_Q_EAPOL, /* Non existant in HIP */
UNIFI_TRAFFIC_Q_MAX, /* Non existant */
UNIFI_TRAFFIC_Q_MLME /* Non existant */
UNIFI_TRAFFIC_Q_EAPOL, /* Non existent in HIP */
UNIFI_TRAFFIC_Q_MAX, /* Non existent */
UNIFI_TRAFFIC_Q_MLME /* Non existent */
} unifi_TrafficQueue;

/*
Expand Down Expand Up @@ -263,7 +263,7 @@ card_t* unifi_alloc_card(CsrSdioFunction *sdiopriv, void *ospriv);
*
* @return \b 0 if UniFi is initialized.
*
* @return \b -CSR_EIO if an I/O error occured while initializing UniFi
* @return \b -CSR_EIO if an I/O error occurred while initializing UniFi
*
* @return \b -CSR_ENODEV if the card is no longer present.
*
Expand Down Expand Up @@ -311,7 +311,7 @@ void unifi_cancel_pending_signals(card_t *card);
*
* @return \b 0 signal is sent.
*
* @return \b -CSR_EIO if an error occured while sending the signal
* @return \b -CSR_EIO if an error occurred while sending the signal
*
* @return \b -CSR_ENODEV if the card is no longer present.
*
Expand Down Expand Up @@ -361,7 +361,7 @@ void unifi_card_info(card_t *card, card_info_t *card_info);
*
* @return \b 0 if the check was performed.
*
* @return \b -CSR_EIO if an error occured while checking the status.
* @return \b -CSR_EIO if an error occurred while checking the status.
*
* @return \b -CSR_ENODEV if the card is no longer present.
*
Expand All @@ -383,11 +383,11 @@ CsrResult unifi_check_io_status(card_t *card, s32 *status);
* is required. If unifi_bh() is called before the timeout expires,
* the caller must pass in the remaining time.
*
* @return \b 0 if no error occured.
* @return \b 0 if no error occurred.
*
* @return \b -CSR_ENODEV if the card is no longer present.
*
* @return \b -CSR_E* if an error occured while running the bottom half.
* @return \b -CSR_E* if an error occurred while running the bottom half.
*
* @ingroup upperedge
*/
Expand Down Expand Up @@ -439,7 +439,7 @@ enum unifi_periodic_wake_mode
*
* @param periodic_wake_mode the Periodic Wake Mode.
*
* @return \b 0 if no error occured.
* @return \b 0 if no error occurred.
*
* @return \b -CSR_E* if the request failed.
*
Expand All @@ -458,7 +458,7 @@ CsrResult unifi_configure_low_power_mode(card_t *card,
*
* @param card the HIP core lib API context.
*
* @return \b 0 if no error occured.
* @return \b 0 if no error occurred.
*
* @return \b -CSR_ENODEV if the card is no longer present.
*
Expand Down

0 comments on commit cb96ec7

Please sign in to comment.