staging: ks7010: Remove trailing _t from 'struct hostif_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_request_t' with 'struct hostif_request'.

Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Quytelda Kahja
2018-03-30 23:08:11 -07:00
committed by Greg Kroah-Hartman
parent d087033c41
commit 0af037ab32
2 changed files with 6 additions and 6 deletions

View File

@@ -1313,7 +1313,7 @@ static __le16 ks_wlan_cap(struct ks_wlan_private *priv)
return cpu_to_le16((uint16_t)capability);
}
static void init_request(struct ks_wlan_private *priv, struct hostif_request_t *req)
static void init_request(struct ks_wlan_private *priv, struct hostif_request *req)
{
req->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type));
req->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode));

View File

@@ -310,7 +310,7 @@ struct hostif_stop_request {
#define CTS_MODE_FALSE 0
#define CTS_MODE_TRUE 1
struct hostif_request_t {
struct hostif_request {
__le16 phy_type;
__le16 cts_mode;
__le16 scan_type;
@@ -327,7 +327,7 @@ struct hostif_request_t {
*/
struct hostif_ps_adhoc_set_request_t {
struct hostif_hdr header;
struct hostif_request_t request;
struct hostif_request request;
__le16 channel;
} __packed;
@@ -348,7 +348,7 @@ struct hostif_ps_adhoc_set_confirm_t {
*/
struct hostif_infrastructure_set_request_t {
struct hostif_hdr header;
struct hostif_request_t request;
struct hostif_request request;
struct ssid ssid;
__le16 beacon_lost_count;
__le16 auth_type;
@@ -370,7 +370,7 @@ struct hostif_infrastructure_set_confirm_t {
*/
struct hostif_adhoc_set_request_t {
struct hostif_hdr header;
struct hostif_request_t request;
struct hostif_request request;
struct ssid ssid;
__le16 channel;
} __packed;
@@ -384,7 +384,7 @@ struct hostif_adhoc_set_request_t {
*/
struct hostif_adhoc_set2_request_t {
struct hostif_hdr header;
struct hostif_request_t request;
struct hostif_request request;
__le16 reserved;
struct ssid ssid;
struct channel_list channel_list;