kernel: backport ethtool_puts
[openwrt/openwrt.git] / target / linux / generic / backport-5.15 / 807-v6.1-0010-nvmem-lan9662-otp-Fix-compatible-string.patch
1 From 1aeb122d214b92474c86fde00a03d6e2d69381b5 Mon Sep 17 00:00:00 2001
2 From: Horatiu Vultur <horatiu.vultur@microchip.com>
3 Date: Wed, 28 Sep 2022 21:51:12 +0200
4 Subject: [PATCH] nvmem: lan9662-otp: Fix compatible string
5
6 The device tree bindings for lan9662-otp expects the compatible string
7 to be one of following compatible strings:
8 microchip,lan9662-otpc
9 microchip,lan9668-otpc
10
11 The problem is that the lan9662-otp driver contains the
12 microchip,lan9662-otp compatible string instead of
13 microchip,lan9662-otpc.
14 Fix this by updating the compatible string in the driver.
15
16 Fixes: 9e8f208ad5229d ("nvmem: lan9662-otp: add support")
17 Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
18 Link: https://lore.kernel.org/r/20220928195112.630351-1-horatiu.vultur@microchip.com
19 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 ---
21 drivers/nvmem/lan9662-otpc.c | 2 +-
22 1 file changed, 1 insertion(+), 1 deletion(-)
23
24 --- a/drivers/nvmem/lan9662-otpc.c
25 +++ b/drivers/nvmem/lan9662-otpc.c
26 @@ -203,7 +203,7 @@ static int lan9662_otp_probe(struct plat
27 }
28
29 static const struct of_device_id lan9662_otp_match[] = {
30 - { .compatible = "microchip,lan9662-otp", },
31 + { .compatible = "microchip,lan9662-otpc", },
32 { },
33 };
34 MODULE_DEVICE_TABLE(of, lan9662_otp_match);