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

This commit replaces param which is uint8_t in michael_append
function in favour of preferred one u8. It also removes no more
needed casts when calling this 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:27 +02:00 committed by Greg Kroah-Hartman
parent a63be5d947
commit 7d89799a04

View File

@ -47,7 +47,7 @@ static inline void michael_block(struct michael_mic_t *mic)
mic->l += mic->r;
}
static void michael_append(struct michael_mic_t *mic, uint8_t *src, int bytes)
static void michael_append(struct michael_mic_t *mic, u8 *src, int bytes)
{
int addlen;
@ -125,8 +125,8 @@ void michael_mic_function(struct michael_mic_t *mic, u8 *key,
* +--+--+--------+--+----+--+--+--+--+--+--+--+--+
*/
michael_init(mic, key);
michael_append(mic, (uint8_t *)data, 12); /* |DA|SA| */
michael_append(mic, data, 12); /* |DA|SA| */
michael_append(mic, pad_data, 4); /* |Priority|0|0|0| */
michael_append(mic, (uint8_t *)(data + 12), len - 12); /* |Data| */
michael_append(mic, data + 12, len - 12); /* |Data| */
michael_get_mic(mic, result);
}