OSDN Git Service

greybus: hid: Drop get_version support
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 11 Aug 2015 02:06:04 +0000 (07:36 +0530)
committerGreg Kroah-Hartman <gregkh@google.com>
Wed, 12 Aug 2015 02:33:05 +0000 (19:33 -0700)
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>
drivers/staging/greybus/hid.c

index 0baed86..887dbac 100644 (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;