Commit 0af037ab authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

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: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d087033c
......@@ -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));
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment