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

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

 This commit replaces uint8_t parameter for preferred one u8 in
 michael_get_mic function.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7d89799a
......@@ -81,7 +81,7 @@ static void michael_append(struct michael_mic_t *mic, u8 *src, int bytes)
}
}
static void michael_get_mic(struct michael_mic_t *mic, uint8_t *dst)
static void michael_get_mic(struct michael_mic_t *mic, u8 *dst)
{
u8 *data = mic->m;
......
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