Message ID | 20210520113844.32319-2-pali@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | firmware: turris-mox-rwtm: new compatible string | expand |
On Thu, May 20, 2021 at 01:38:43PM +0200, Pali Rohár wrote: > Add more generic compatible string 'marvell,armada-3700-rwtm-firmware' for > this driver, since it can also be used on other Armada 3720 devices. > > Current compatible string 'cznic,turris-mox-rwtm' is kept for backward > compatibility. > > Signed-off-by: Pali Rohár <pali@kernel.org> > Fixes: 389711b37493 ("firmware: Add Turris Mox rWTM firmware driver") Since this is intended for the next merge window, it is clearly not a fix. Please drop the fixes tag. Otherwise: Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
Hello, > Add more generic compatible string 'marvell,armada-3700-rwtm-firmware' for > this driver, since it can also be used on other Armada 3720 devices. > > Current compatible string 'cznic,turris-mox-rwtm' is kept for backward > compatibility. > > Signed-off-by: Pali Rohár <pali@kernel.org> > Fixes: 389711b37493 ("firmware: Add Turris Mox rWTM firmware driver") Applied on mvebu/drivers (I removed the Fixes line) Thanks, Gregory > --- > drivers/firmware/turris-mox-rwtm.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/firmware/turris-mox-rwtm.c b/drivers/firmware/turris-mox-rwtm.c > index 1cf4f1087492..c2d34dc8ba46 100644 > --- a/drivers/firmware/turris-mox-rwtm.c > +++ b/drivers/firmware/turris-mox-rwtm.c > @@ -569,6 +569,7 @@ static int turris_mox_rwtm_remove(struct platform_device *pdev) > > static const struct of_device_id turris_mox_rwtm_match[] = { > { .compatible = "cznic,turris-mox-rwtm", }, > + { .compatible = "marvell,armada-3700-rwtm-firmware", }, > { }, > }; > > -- > 2.20.1 >
diff --git a/drivers/firmware/turris-mox-rwtm.c b/drivers/firmware/turris-mox-rwtm.c index 1cf4f1087492..c2d34dc8ba46 100644 --- a/drivers/firmware/turris-mox-rwtm.c +++ b/drivers/firmware/turris-mox-rwtm.c @@ -569,6 +569,7 @@ static int turris_mox_rwtm_remove(struct platform_device *pdev) static const struct of_device_id turris_mox_rwtm_match[] = { { .compatible = "cznic,turris-mox-rwtm", }, + { .compatible = "marvell,armada-3700-rwtm-firmware", }, { }, };
Add more generic compatible string 'marvell,armada-3700-rwtm-firmware' for this driver, since it can also be used on other Armada 3720 devices. Current compatible string 'cznic,turris-mox-rwtm' is kept for backward compatibility. Signed-off-by: Pali Rohár <pali@kernel.org> Fixes: 389711b37493 ("firmware: Add Turris Mox rWTM firmware driver") --- drivers/firmware/turris-mox-rwtm.c | 1 + 1 file changed, 1 insertion(+)