From patchwork Wed Oct 26 08:05:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 13020293 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 672D5C38A2D for ; Wed, 26 Oct 2022 08:05:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232371AbiJZIFe (ORCPT ); Wed, 26 Oct 2022 04:05:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50046 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229452AbiJZIFd (ORCPT ); Wed, 26 Oct 2022 04:05:33 -0400 Received: from mail-lf1-x12d.google.com (mail-lf1-x12d.google.com [IPv6:2a00:1450:4864:20::12d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 748589B878 for ; Wed, 26 Oct 2022 01:05:32 -0700 (PDT) Received: by mail-lf1-x12d.google.com with SMTP id g7so27029543lfv.5 for ; Wed, 26 Oct 2022 01:05:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=ZT2RtRVdSe4A/vZjl2soZfExRRC4tFUI2ftnW/OyxcI=; b=lISX1dm2DJj7wZFPa1HV8C2vEB4pYOwWe1OWwHy2MTGzcz9GgV5lgxJun1dAgqAaOY a70ief7EQxbkEhZpwrhvG9vgZPrngGP20z6ds8fiwF+SPIehpova3CEhulOxck89ibOb yUJm6LEQyTuOPqBTT+ISRpvBkYEbWOEA/N8EmZiatLCD/ccW0UrxSeLO8tEPVzJTUdV1 UUvRx/H15+Bhebn/fjJ2EOG2wdBnInH37t2CyWhCNoL2gH3K5w8lVHCMDg8zWi1u8fwl l3wAz3bOVvdLMbltmnFeuRo5xfu3nw62jcACldLwEksRurz+goE439ZnLk5Tt81Pp1rr loCg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=ZT2RtRVdSe4A/vZjl2soZfExRRC4tFUI2ftnW/OyxcI=; b=oO0BEKfmeYbnqxmg0IjqrT4coFRePeoC9UHvZfqhbVqtFBWySV0UdpLQU9mqS9l6BF B5814vgeH7E6zPVBzU6tnywMygvoBM3RKZ6oPyciXSrJR3mt7UVeeDWVlj/smBLXD3p5 0GDPqun4SBio2CRYGUSI03apcbbGSQ5teM4iMFoxGbq5Js2hhDC8kYJ+MpOLy99qLwar xolpVTsRqHRg1KQO14AaxkOQs0sBM6cqhbtdjClGljBmeHGBwl7Czjp6ZYsQ5AJAVR/G rddFclkEt8cQGbFXUOBUEUzFQSGkycTma4T0RuyYDK2uyT0+2TBLGecwpQJjhho6TrHr JAOQ== X-Gm-Message-State: ACrzQf0UuwtlOxQyckiV4G7mdnmqC+4BY6Ubvyw2gxG9JvpuYTiLsSIm WhMowO2NNUUd9EdQCxbwR6CvZA== X-Google-Smtp-Source: AMsMyM7kRy8yg7rxEFuFWIuyQarh2UEzeIz+Ek640A+laDhZFLsSren6Ycu8zeeVYw2FhvPF84nmUA== X-Received: by 2002:a19:5e11:0:b0:4a2:7d32:66 with SMTP id s17-20020a195e11000000b004a27d320066mr15044771lfb.48.1666771530736; Wed, 26 Oct 2022 01:05:30 -0700 (PDT) Received: from fedora.. ([85.235.10.72]) by smtp.gmail.com with ESMTPSA id d10-20020ac244ca000000b004a1e592837esm750958lfm.140.2022.10.26.01.05.30 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 26 Oct 2022 01:05:30 -0700 (PDT) From: Linus Walleij To: Ralf Baechle Cc: linux-mips@vger.kernel.org, Linus Walleij , Bartosz Golaszewski , linux-gpio@vger.kernel.org Subject: [PATCH] mips: alchemy: gpio: Include the right header Date: Wed, 26 Oct 2022 10:05:28 +0200 Message-Id: <20221026080528.105967-1-linus.walleij@linaro.org> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org The local GPIO driver in the MIPS Alchemy is including the legacy header but what it wants is to implement a GPIO driver so include instead. Cc: Bartosz Golaszewski Cc: linux-gpio@vger.kernel.org Signed-off-by: Linus Walleij Reviewed-by: Philippe Mathieu-Daudé --- arch/mips/alchemy/common/gpiolib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/alchemy/common/gpiolib.c b/arch/mips/alchemy/common/gpiolib.c index a17d7a8909c4..1b16daaa86ae 100644 --- a/arch/mips/alchemy/common/gpiolib.c +++ b/arch/mips/alchemy/common/gpiolib.c @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include