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=-6.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,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 1241AC10F12 for ; Mon, 15 Apr 2019 19:03:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D4DDE218EA for ; Mon, 15 Apr 2019 19:03:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555355037; bh=q+4pjPZ1jZOTtIAFNsg9ZAhepzhuc5cL95X2C98unBg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=yUdtXU4R8c7XpqjICQHNLbZmbfcj032uoNq1wQh/MJu3AtPAHGV/+C+gzA79/qZLS IKNHwFoFuUcDqghW1eiY7xq5u0C7k3sSW9gzzuW9hD0Cni3n7WVk0XvKMC0FGgjvcR DQ8CDGvwBS7NSR1mp3rA0iDLW6gqc86WGIGifUDQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729400AbfDOTD5 (ORCPT ); Mon, 15 Apr 2019 15:03:57 -0400 Received: from mail.kernel.org ([198.145.29.99]:36080 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728596AbfDOTDu (ORCPT ); Mon, 15 Apr 2019 15:03:50 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.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 714EE2087C; Mon, 15 Apr 2019 19:03:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555355029; bh=q+4pjPZ1jZOTtIAFNsg9ZAhepzhuc5cL95X2C98unBg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sMu68wSnkHamFIB2viNO2kQmnQk14PBHdAys44K4qQIga+2f8aU4IW3IIaBjZ8FZI hGVuI2+/EKYssmmKeRn8+Jvaio75Skzhv/ANP6UY1mOQrXJls1pCvd+uZmTLeBfgHt llY+jcmcM9Md9hNpm3gBzneuf7S03vnw/TG8YSlM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, David Engraf , Nicolas Ferre , Ludovic Desroches Subject: [PATCH 4.14 56/69] ARM: dts: at91: Fix typo in ISC_D0 on PC9 Date: Mon, 15 Apr 2019 20:59:14 +0200 Message-Id: <20190415183735.094329128@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190415183726.036654568@linuxfoundation.org> References: <20190415183726.036654568@linuxfoundation.org> User-Agent: quilt/0.66 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 From: David Engraf commit e7dfb6d04e4715be1f3eb2c60d97b753fd2e4516 upstream. The function argument for the ISC_D0 on PC9 was incorrect. According to the documentation it should be 'C' aka 3. Signed-off-by: David Engraf Reviewed-by: Nicolas Ferre Signed-off-by: Ludovic Desroches Fixes: 7f16cb676c00 ("ARM: at91/dt: add sama5d2 pinmux") Cc: # v4.4+ Signed-off-by: Greg Kroah-Hartman --- arch/arm/boot/dts/sama5d2-pinfunc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/arm/boot/dts/sama5d2-pinfunc.h +++ b/arch/arm/boot/dts/sama5d2-pinfunc.h @@ -518,7 +518,7 @@ #define PIN_PC9__GPIO PINMUX_PIN(PIN_PC9, 0, 0) #define PIN_PC9__FIQ PINMUX_PIN(PIN_PC9, 1, 3) #define PIN_PC9__GTSUCOMP PINMUX_PIN(PIN_PC9, 2, 1) -#define PIN_PC9__ISC_D0 PINMUX_PIN(PIN_PC9, 2, 1) +#define PIN_PC9__ISC_D0 PINMUX_PIN(PIN_PC9, 3, 1) #define PIN_PC9__TIOA4 PINMUX_PIN(PIN_PC9, 4, 2) #define PIN_PC10 74 #define PIN_PC10__GPIO PINMUX_PIN(PIN_PC10, 0, 0)