From c24e01fcccdb8fe3f4a2c9134b584a6076b7c1ef Mon Sep 17 00:00:00 2001 From: Sungbo Eo Date: Mon, 24 Feb 2020 00:12:23 +0900 Subject: [PATCH] kirkwood: fix device node name of Iomega ix2-200 The current device node name of ix2-200 is "iom_ix2_200", which results in a SUPPORTED_DEVICES string "iom,ix2,200" that does not match the compatible in DTS and the board name used in board.d. Fix this by replacing the second underscore with a dash, following vendor_model scheme. Fixes: 27b2f0fc0fc5 ("kirkwood: add support for Iomega Storcenter ix2-200") Signed-off-by: Sungbo Eo [commit title/message rephrase] Signed-off-by: Adrian Schmutzler --- target/linux/kirkwood/image/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/kirkwood/image/Makefile b/target/linux/kirkwood/image/Makefile index 9c5681901c..cbdfbc11ec 100644 --- a/target/linux/kirkwood/image/Makefile +++ b/target/linux/kirkwood/image/Makefile @@ -62,7 +62,7 @@ define Device/iom_iconnect-1.1 endef TARGET_DEVICES += iom_iconnect-1.1 -define Device/iom_ix2_200 +define Device/iom_ix2-200 DEVICE_VENDOR := Iomega DEVICE_MODEL := StorCenter ix2-200 DEVICE_DTS := kirkwood-iomega_ix2_200 @@ -77,7 +77,7 @@ define Device/iom_ix2_200 IMAGE_SIZE := 32505856 IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | check-size $$$$(IMAGE_SIZE) endef -TARGET_DEVICES += iom_ix2_200 +TARGET_DEVICES += iom_ix2-200 define Device/linksys_audi DEVICE_VENDOR := Linksys -- 2.30.2