mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 18:49:22 -04:00
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:
committed by
Greg Kroah-Hartman
parent
d087033c41
commit
0af037ab32
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user