1
0
Fork 0

greybus: hid: Drop get_version support

This is done from a common place now, no need to replicate it.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
hifive-unleashed-5.1
Viresh Kumar 2015-08-11 07:36:04 +05:30 committed by Greg Kroah-Hartman
parent 03490fdbe7
commit 2dad338c9c
1 changed files with 0 additions and 9 deletions

View File

@ -68,8 +68,6 @@ struct gb_hid_input_report_request {
/* Greybus HID device's structure */
struct gb_hid {
struct gb_connection *connection;
u8 version_major;
u8 version_minor;
struct hid_device *hid;
struct gb_hid_desc_response hdesc;
@ -86,9 +84,6 @@ static DEFINE_MUTEX(gb_hid_open_mutex);
/* Routines to get controller's information over greybus */
/* Define get_version() routine */
define_get_version(gb_hid, HID);
/* Operations performed on greybus */
static int gb_hid_get_desc(struct gb_hid *ghid)
{
@ -445,10 +440,6 @@ static int gb_hid_init(struct gb_hid *ghid)
struct hid_device *hid = ghid->hid;
int ret;
ret = get_version(ghid);
if (ret)
return ret;
ret = gb_hid_get_desc(ghid);
if (ret)
return ret;