From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B20E6C43381 for ; Mon, 25 Feb 2019 21:24:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7689921850 for ; Mon, 25 Feb 2019 21:24:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551129859; bh=xkjWX7jQ3RYN/nXiu67vOMVTYQqVX5zJqkZ7VZ8OpSw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=U8Inm+diSp19t8FUcOQRynA7JrkK/mrKaotTX1ccNpWD2H9TMAHBnFmhHuhtJU+DK IL7q+3sbfYuhSptcpg5oNbsblWi/KQ1/XoCHuLL9krKxRXV7ZfDxmhG7pUQEfM9sPe V7pLC0CHijoXMUkyind2uQbg0RbGhsyyRSAOCRNc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731233AbfBYVYS (ORCPT ); Mon, 25 Feb 2019 16:24:18 -0500 Received: from mail.kernel.org ([198.145.29.99]:58744 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731220AbfBYVYO (ORCPT ); Mon, 25 Feb 2019 16:24:14 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0AA1B217F9; Mon, 25 Feb 2019 21:24:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551129853; bh=xkjWX7jQ3RYN/nXiu67vOMVTYQqVX5zJqkZ7VZ8OpSw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=z6D2ybMhFqf0OG0X/15yfTMQyZ9zBVDdH9D3uYRX9UE/tKf+ZOK1MX5dncFHtdY20 HawBwup4VE/xKMIk1tN1Ruo2Afnwt/Z9ObrT6FoLblRmG9PCwEljCLoJ/yl+uw0q3C AY+F8qkUb7B2ze1WmEXY7fgCQIAbRFExsulcV18M= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Cheng-Min Ao , Yu-Hsiang Chen , Guenter Roeck , Sasha Levin Subject: [PATCH 4.19 088/152] hwmon: (tmp421) Correct the misspelling of the tmp442 compatible attribute in OF device ID table Date: Mon, 25 Feb 2019 22:11:20 +0100 Message-Id: <20190225195049.080685537@linuxfoundation.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190225195043.645958524@linuxfoundation.org> References: <20190225195043.645958524@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.19-stable review patch. If anyone has any objections, please let me know. ------------------ [ Upstream commit f422449b58548a41e98fc97b259a283718e527db ] Correct a typo in OF device ID table The last one should be 'ti,tmp442' Signed-off-by: Cheng-Min Ao Signed-off-by: Yu-Hsiang Chen Signed-off-by: Guenter Roeck Signed-off-by: Sasha Levin --- drivers/hwmon/tmp421.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwmon/tmp421.c b/drivers/hwmon/tmp421.c index e36399213324d..ceb3db6f3fdda 100644 --- a/drivers/hwmon/tmp421.c +++ b/drivers/hwmon/tmp421.c @@ -88,7 +88,7 @@ static const struct of_device_id tmp421_of_match[] = { .data = (void *)2 }, { - .compatible = "ti,tmp422", + .compatible = "ti,tmp442", .data = (void *)3 }, { }, -- 2.19.1