mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
dda43a0e03
For the header files in include/linux/usb, add missing multiple inclusion protection and standardize what's already there. The apparent standards: * macro name of __LINUX_USB_headerfile_H * inclusion protection placed after leading comment block * macro name added as a comment on the final #endif * any obvious trivial whitespace cleanup associated with the above Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
25 lines
680 B
C
25 lines
680 B
C
/*
|
|
* Copyright (C) 2005 Dmitry Torokhov
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __LINUX_USB_INPUT_H
|
|
#define __LINUX_USB_INPUT_H
|
|
|
|
#include <linux/usb.h>
|
|
#include <linux/input.h>
|
|
#include <asm/byteorder.h>
|
|
|
|
static inline void
|
|
usb_to_input_id(const struct usb_device *dev, struct input_id *id)
|
|
{
|
|
id->bustype = BUS_USB;
|
|
id->vendor = le16_to_cpu(dev->descriptor.idVendor);
|
|
id->product = le16_to_cpu(dev->descriptor.idProduct);
|
|
id->version = le16_to_cpu(dev->descriptor.bcdDevice);
|
|
}
|
|
|
|
#endif /* __LINUX_USB_INPUT_H */
|