HID: wacom: move unit and unitExpo initialization to wacom_calculate_res
authorPing Cheng <pinglinux@gmail.com>
Wed, 15 Apr 2015 23:54:14 +0000 (16:54 -0700)
committerJiri Kosina <jkosina@suse.cz>
Thu, 23 Apr 2015 08:02:21 +0000 (10:02 +0200)
That is where they belong...

Signed-off-by: Ping Cheng <pingc@wacom.com>
Reviewed-by: Jason Gerecke <jason.gerecke@wacom.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/wacom_sys.c

index 13d8c8fa8ed42c7b612face59969137379c9d656..b3c6f111093b59add548572b90a294ced35c5c20 100644 (file)
@@ -1369,6 +1369,12 @@ static void wacom_set_default_phy(struct wacom_features *features)
 
 static void wacom_calculate_res(struct wacom_features *features)
 {
+       /* set unit to "100th of a mm" for devices not reported by HID */
+       if (!features->unit) {
+               features->unit = 0x11;
+               features->unitExpo = -3;
+       }
+
        features->x_resolution = wacom_calc_hid_res(features->x_max,
                                                    features->x_phy,
                                                    features->unit,
@@ -1476,12 +1482,6 @@ static int wacom_probe(struct hid_device *hdev,
        wacom_retrieve_hid_descriptor(hdev, features);
 
        wacom_setup_device_quirks(wacom);
-
-       /* set unit to "100th of a mm" for devices not reported by HID */
-       if (!features->unit) {
-               features->unit = 0x11;
-               features->unitExpo = -3;
-       }
        wacom_calculate_res(features);
 
        strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));