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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A5F2EB64D9 for ; Wed, 14 Jun 2023 11:16:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230249AbjFNLQN (ORCPT ); Wed, 14 Jun 2023 07:16:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37602 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234692AbjFNLP5 (ORCPT ); Wed, 14 Jun 2023 07:15:57 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id A277B1BE9 for ; Wed, 14 Jun 2023 04:15:56 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 933328027; Wed, 14 Jun 2023 11:15:55 +0000 (UTC) Date: Wed, 14 Jun 2023 14:15:54 +0300 From: Tony Lindgren To: Linus Walleij Cc: soc@kernel.org, linux-omap@vger.kernel.org, Peter Vasil Subject: Re: [PATCH] ARM: omap2: Fix copy/paste bug Message-ID: <20230614111554.GJ14287@atomide.com> References: <20230614093032.403982-1-linus.walleij@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230614093032.403982-1-linus.walleij@linaro.org> Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org * Linus Walleij [230614 12:30]: > I mistyped one of the SD/MMC GPIO lines on the Nokia n810 which > was supposed to be "vio" as "vsd". > > Fix it up. > > Reported-by: Peter Vasil > Signed-off-by: Linus Walleij > --- > SoC maintainers: please apply this directly where the rest of the > OMAP clean-ups are. Reviewed-by: Tony Lindgren > arch/arm/mach-omap2/board-n8x0.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c > index 564bf80a2621..8e3b5068d4ab 100644 > --- a/arch/arm/mach-omap2/board-n8x0.c > +++ b/arch/arm/mach-omap2/board-n8x0.c > @@ -158,7 +158,7 @@ static struct gpiod_lookup_table nokia810_mmc_gpio_table = { > "vsd", 1, GPIO_ACTIVE_HIGH), > /* Slot index 1, VIO power, GPIO 9 */ > GPIO_LOOKUP_IDX("gpio-0-15", 9, > - "vsd", 1, GPIO_ACTIVE_HIGH), > + "vio", 1, GPIO_ACTIVE_HIGH), > { } > }, > }; > -- > 2.34.1 >