projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c93ca5
)
Input: tegra-kbc - remove redundant of_match_ptr
author
Sachin Kamat
<sachin.kamat@linaro.org>
Sun, 6 Oct 2013 07:50:31 +0000
(
00:50
-0700)
committer
Dmitry Torokhov
<dmitry.torokhov@gmail.com>
Sun, 6 Oct 2013 08:22:25 +0000
(
01:22
-0700)
The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/keyboard/tegra-kbc.c
patch
|
blob
|
history
diff --git
a/drivers/input/keyboard/tegra-kbc.c
b/drivers/input/keyboard/tegra-kbc.c
index
9cd20e6
..
8508879
100644
(file)
--- a/
drivers/input/keyboard/tegra-kbc.c
+++ b/
drivers/input/keyboard/tegra-kbc.c
@@
-614,7
+614,7
@@
static int tegra_kbc_probe(struct platform_device *pdev)
unsigned int keymap_rows;
const struct of_device_id *match;
- match = of_match_device(
of_match_ptr(tegra_kbc_of_match)
, &pdev->dev);
+ match = of_match_device(
tegra_kbc_of_match
, &pdev->dev);
kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL);
if (!kbc) {