Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

phy: uniphier-usb3: Add compatible string for NX1 SoC

Add basic support for UniPhier NX1 SoC. This includes a compatible string
and the same SoC-dependent data as LD20/PXs3 SoCs.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Link: https://lore.kernel.org/r/1635503947-18250-3-git-send-email-hayashi.kunihiko@socionext.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Kunihiko Hayashi and committed by
Vinod Koul
877e8d28 d0cfb865

+8
+4
drivers/phy/socionext/phy-uniphier-usb3hs.c
··· 447 447 .compatible = "socionext,uniphier-pxs3-usb3-hsphy", 448 448 .data = &uniphier_pxs3_data, 449 449 }, 450 + { 451 + .compatible = "socionext,uniphier-nx1-usb3-hsphy", 452 + .data = &uniphier_pxs3_data, 453 + }, 450 454 { /* sentinel */ } 451 455 }; 452 456 MODULE_DEVICE_TABLE(of, uniphier_u3hsphy_match);
+4
drivers/phy/socionext/phy-uniphier-usb3ss.c
··· 328 328 .compatible = "socionext,uniphier-pxs3-usb3-ssphy", 329 329 .data = &uniphier_ld20_data, 330 330 }, 331 + { 332 + .compatible = "socionext,uniphier-nx1-usb3-ssphy", 333 + .data = &uniphier_ld20_data, 334 + }, 331 335 { /* sentinel */ } 332 336 }; 333 337 MODULE_DEVICE_TABLE(of, uniphier_u3ssphy_match);