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,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 EE1A5C10F11 for ; Wed, 24 Apr 2019 17:19:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C06E020675 for ; Wed, 24 Apr 2019 17:19:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556126388; bh=ttnGTbG+cnZpsCsMFRI74xwMl+HbKjDdkjz3McKsXpc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=PYmbGFBtn8/ClsyjzP3nlBhk35wObBjDpMcKbxWVS2fhRm84cHYM0FnRZB7C3gIhQ tTW/Du1c0EXdNDD0Rxr3TRm+SGXZOimezBpaABQswLqF6PQFWqyDIlmKjmZG3woZUB IhGT1qiWMBq8QtFoQgDOcocDdgdr6udxZ6LJHjrE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388409AbfDXRTr (ORCPT ); Wed, 24 Apr 2019 13:19:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:45050 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389056AbfDXRTn (ORCPT ); Wed, 24 Apr 2019 13:19:43 -0400 Received: from localhost (62-193-50-229.as16211.net [62.193.50.229]) (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 6238A20835; Wed, 24 Apr 2019 17:19:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556126382; bh=ttnGTbG+cnZpsCsMFRI74xwMl+HbKjDdkjz3McKsXpc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rRi2l5EpI07b9OrPNJq4294t4HatKuv1GC4PGFciox9B1/CaYg2H2YW2LJISBeLyc uFuqTvv68jItYhj3VOqhQCeomd1QH4DNJfiuxVMlWuP0LJdvD2ei9uATxceDSGwIVb etp/KotywTo123aXMySK5CDJchRFe6JP7aZUdpAM= 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.4 092/168] ARM: dts: at91: Fix typo in ISC_D0 on PC9 Date: Wed, 24 Apr 2019 19:08:56 +0200 Message-Id: <20190424170929.177846264@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190424170923.452349382@linuxfoundation.org> References: <20190424170923.452349382@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 @@ -517,7 +517,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)