mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 08:20:40 -04:00
staging: ks7010: replace not standard uint type to unsigned int
The field 'wakeup_count' in 'ks_wlan_private' struct is declared as 'uint' which is not a standard type. Replace in favour of 'unsigned int' which it is. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f647b8e1ff
commit
4cf2df756f
@@ -513,7 +513,7 @@ struct ks_wlan_private {
|
||||
unsigned long last_doze;
|
||||
unsigned long last_wakeup;
|
||||
|
||||
uint wakeup_count; /* for detect wakeup loop */
|
||||
unsigned int wakeup_count; /* for detect wakeup loop */
|
||||
};
|
||||
|
||||
static inline void inc_txqhead(struct ks_wlan_private *priv)
|
||||
|
||||
Reference in New Issue
Block a user