From: Sachin Kamat Date: Sun, 6 Oct 2013 07:50:31 +0000 (-0700) Subject: Input: tegra-kbc - remove redundant of_match_ptr X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~10543^2~773 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3cbd04f856467d8e3b2cb15194508f38c507047a;p=mirror_ubuntu-focal-kernel.git 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 Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c index 9cd20e6905a0..8508879f6faf 100644 --- 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) {