Commit 20a5ca23 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct hostt_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 hostt_t' with 'struct hostt'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 87828c8f
...@@ -196,7 +196,7 @@ struct sme_info { ...@@ -196,7 +196,7 @@ struct sme_info {
unsigned long sme_flag; unsigned long sme_flag;
}; };
struct hostt_t { struct hostt {
int buff[SME_EVENT_BUFF_SIZE]; int buff[SME_EVENT_BUFF_SIZE];
unsigned int qhead; unsigned int qhead;
unsigned int qtail; unsigned int qtail;
...@@ -483,7 +483,7 @@ struct ks_wlan_private { ...@@ -483,7 +483,7 @@ struct ks_wlan_private {
struct local_eeprom_sum_t eeprom_sum; struct local_eeprom_sum_t eeprom_sum;
u8 eeprom_checksum; u8 eeprom_checksum;
struct hostt_t hostt; struct hostt hostt;
unsigned long last_doze; unsigned long last_doze;
unsigned long last_wakeup; unsigned long last_wakeup;
......
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