Commit a63be5d9 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

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: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c0a2a254
......@@ -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);
......
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