mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
usb: kbd: signature of usb_kbd_put_queue()
usb_kbd_buffer is defined as u8[]. So let usb_kbd_put_queue() use u8 as type of the parameter for the new byte. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
216db3af2c
commit
28dfa7d80d
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ extern int __maybe_unused net_busy_flag;
|
|||
static unsigned long __maybe_unused kbd_testc_tms;
|
||||
|
||||
/* Puts character in the queue and sets up the in and out pointer. */
|
||||
static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c)
|
||||
static void usb_kbd_put_queue(struct usb_kbd_pdata *data, u8 c)
|
||||
{
|
||||
if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) {
|
||||
/* Check for buffer full. */
|
||||
|
|
Loading…
Add table
Reference in a new issue