staging: ks7010: replace uint8_t in favour of u8 in michael_init

This commit replaces uint8_t for preferred one u8 in parameter
of michael_init function.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sergio Paracuellos 2018-03-28 17:24:26 +02:00 committed by Greg Kroah-Hartman
parent c0a2a25460
commit a63be5d947
1 changed files with 1 additions and 1 deletions
drivers/staging/ks7010

View File

@ -24,7 +24,7 @@ static inline void michael_clear(struct michael_mic_t *mic)
mic->m_bytes = 0;
}
static void michael_init(struct michael_mic_t *mic, uint8_t *key)
static void michael_init(struct michael_mic_t *mic, u8 *key)
{
// Set the key
mic->k0 = get_unaligned_le32(key);