Skip to content

Commit

Permalink
[PATCH] USB: drivers/usb/input/usbkbd.c: make a function static
Browse files Browse the repository at this point in the history
This patch makes a needlessly global function static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adrian Bunk authored and Greg KH committed Apr 22, 2005
1 parent cef1112 commit be5e338
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/usb/input/usbkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ static void usb_kbd_irq(struct urb *urb, struct pt_regs *regs)
kbd->usbdev->devpath, i);
}

int usb_kbd_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
static int usb_kbd_event(struct input_dev *dev, unsigned int type,
unsigned int code, int value)
{
struct usb_kbd *kbd = dev->private;

Expand Down

0 comments on commit be5e338

Please sign in to comment.