From a83a6418a233349c48fec4a203a7d94333dc06d9 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Mon, 20 Feb 2017 11:54:31 +0100 Subject: [PATCH] net: mvpp2: finally add the PPv2.2 compatible string Now that the mvpp2 driver has been modified to accommodate the support for PPv2.2, we can finally advertise this support by adding the appropriate compatible string. Signed-off-by: Thomas Petazzoni Signed-off-by: Stefan Roese Acked-by: Joe Hershberger --- drivers/net/mvpp2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/mvpp2.c b/drivers/net/mvpp2.c index c683fff53f..16da28de69 100644 --- a/drivers/net/mvpp2.c +++ b/drivers/net/mvpp2.c @@ -4541,6 +4541,10 @@ static const struct udevice_id mvpp2_ids[] = { .compatible = "marvell,armada-375-pp2", .data = MVPP21, }, + { + .compatible = "marvell,armada-7k-pp22", + .data = MVPP22, + }, { } }; -- 2.25.1