]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Input: pixcir_i2c_ts - simplify code with of_device_get_match_data
authorLABBE Corentin <clabbe.montjoie@gmail.com>
Fri, 19 Aug 2016 17:16:51 +0000 (10:16 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 22 Aug 2016 21:16:29 +0000 (14:16 -0700)
The usage of of_device_get_match_data reduce the code size a bit.
Furthermore, it is better to use a standard function for
getting the match data.

Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/pixcir_i2c_ts.c

index d159e14f4d206633e209f872e421710590b1ea71..b0a2dc2fbe0841b3a0349e2614bcb7051d7ea4e6 100644 (file)
@@ -431,13 +431,7 @@ static const struct of_device_id pixcir_of_match[];
 static int pixcir_parse_dt(struct device *dev,
                           struct pixcir_i2c_ts_data *tsdata)
 {
-       const struct of_device_id *match;
-
-       match = of_match_device(of_match_ptr(pixcir_of_match), dev);
-       if (!match)
-               return -EINVAL;
-
-       tsdata->chip = (const struct pixcir_i2c_chip_data *)match->data;
+       tsdata->chip = of_device_get_match_data(dev);
        if (!tsdata->chip)
                return -EINVAL;