mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 23:29:10 -04:00
staging: ks7010: Remove trailing _t from 'struct hostif_stop_request_t'.
The "_t" suffix is not needed for structure names in this driver, and is a reflection of an older typedef system that is no longer in place. Replace all occurences of 'struct hostif_stop_request_t' with 'struct hostif_stop_request'. Signed-off-by: Quytelda Kahja <quytelda@tamalin.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4e74c671d0
commit
9f2ae0a40c
@@ -950,7 +950,7 @@ static int ks7010_sdio_probe(struct sdio_func *func,
|
||||
/* send stop request to MAC */
|
||||
static int send_stop_request(struct sdio_func *func)
|
||||
{
|
||||
struct hostif_stop_request_t *pp;
|
||||
struct hostif_stop_request *pp;
|
||||
struct ks_sdio_card *card;
|
||||
size_t size;
|
||||
|
||||
|
||||
@@ -1426,7 +1426,7 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv)
|
||||
static
|
||||
void hostif_stop_request(struct ks_wlan_private *priv)
|
||||
{
|
||||
struct hostif_stop_request_t *pp;
|
||||
struct hostif_stop_request *pp;
|
||||
|
||||
pp = hostif_generic_request(sizeof(*pp), HIF_STOP_REQ);
|
||||
if (!pp)
|
||||
|
||||
@@ -298,7 +298,7 @@ struct link_ap_info {
|
||||
#define RESULT_CONNECT 0
|
||||
#define RESULT_DISCONNECT 1
|
||||
|
||||
struct hostif_stop_request_t {
|
||||
struct hostif_stop_request {
|
||||
struct hostif_hdr header;
|
||||
} __packed;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user