mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 09:34:17 +00:00
Input: tegra-kbc - remove redundant of_match_ptr
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>
This commit is contained in:
parent
4c93ca5ff2
commit
3cbd04f856
@ -614,7 +614,7 @@ static int tegra_kbc_probe(struct platform_device *pdev)
|
|||||||
unsigned int keymap_rows;
|
unsigned int keymap_rows;
|
||||||
const struct of_device_id *match;
|
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);
|
kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL);
|
||||||
if (!kbc) {
|
if (!kbc) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user