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: 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:28 +02:00 committed by Greg Kroah-Hartman
parent 7d89799a04
commit e8f7cac0a4

View File

@ -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;