From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from metis.ext.pengutronix.de (unknown [IPv6:2001:6f8:1178:4:290:27ff:fe1d:cc33]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id B3D4D1A17C6 for ; Wed, 20 Aug 2014 19:05:28 +1000 (EST) From: Philipp Zabel To: devicetree@vger.kernel.org Subject: [RFC PATCH 5/6] rtc: rtc-isl12022: Change vendor prefix for Intersil Corporation to isil Date: Wed, 20 Aug 2014 10:43:03 +0200 Message-Id: <1408524184-31928-6-git-send-email-p.zabel@pengutronix.de> In-Reply-To: <1408524184-31928-1-git-send-email-p.zabel@pengutronix.de> References: <1408524184-31928-1-git-send-email-p.zabel@pengutronix.de> Cc: Mark Rutland , Alessandro Zummo , Russell King , Pawel Moll , Ian Campbell , Rob Herring , Paul Mackerras , Philipp Zabel , Kumar Gala , linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Currently there is a wild mixture of isl, isil, and intersil compatibles in the kernel. At this point, changing the vendor symbol to the most often used variant, which is equal to the NASDAQ symbol, isil, should not hurt, since the isl1208 driver doesn't care either way. Patch db04d6284e2a added device tree support using the then documented isl vendor prefix, so we keep that around for backwards compatibility. Signed-off-by: Philipp Zabel --- drivers/rtc/rtc-isl12022.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-isl12022.c b/drivers/rtc/rtc-isl12022.c index aa55f08..df20f18 100644 --- a/drivers/rtc/rtc-isl12022.c +++ b/drivers/rtc/rtc-isl12022.c @@ -275,7 +275,8 @@ static int isl12022_probe(struct i2c_client *client, #ifdef CONFIG_OF static struct of_device_id isl12022_dt_match[] = { - { .compatible = "isl,isl12022" }, + { .compatible = "isil,isl12022" }, + { .compatible = "isl,isl12022" }, /* for backwards compatibility */ { }, }; #endif -- 2.1.0.rc1