From patchwork Mon Aug 6 14:23:21 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 953888 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-gpio-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=linaro.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linaro.org header.i=@linaro.org header.b="SHD1F8qp"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 41kfyT09Csz9s0R for ; Tue, 7 Aug 2018 00:23:29 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729749AbeHFQcs (ORCPT ); Mon, 6 Aug 2018 12:32:48 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:32777 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729008AbeHFQcs (ORCPT ); Mon, 6 Aug 2018 12:32:48 -0400 Received: by mail-wm0-f68.google.com with SMTP id r24-v6so11670043wmh.0 for ; Mon, 06 Aug 2018 07:23:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=9HuxfVyXp5VX5Ox5g1EhT7AnkFoDOhsqsKtG4aOqrgU=; b=SHD1F8qptlG1CmgaqOZzfIcaMoWa34hcQz35kguvBlAqFHnAKflfc50F+MULi1ZAlr LGgcSWTInRPJyfV5+WXSH9Rm4MJj8WdBT+Y2x/+H3F8BdWvjF3HJPZBlVvCENwPhurox x/tHdY2yKdnoF6197hO0rJY8XYxZ2Zma0C+/A= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=9HuxfVyXp5VX5Ox5g1EhT7AnkFoDOhsqsKtG4aOqrgU=; b=jmLE26weH/l7cKdNoX7/+3IyvzvN2+ZgD+aDv07dIqRNruwh6pLwmd9dG95f0s5siT Aaj4HnoQQBH7IFRVNeqVy5r8ismhYhoGtFtfv8TRS8iPtzt25s2OZsjDkFU/JEunDTJu wOmqj9JskcML+NtaLJ0Qyc/bjyv4SLaQRpaodeMfV0cKiflE532K8l/CiNoriwXAtwYG sHXQ/udJ4kdaREccprvaKRqxTrgtUNhX7NRuFYFwlIlNzgGTMjUxvdHSXRItn9U5kbUo /C0dUP9Sgc+GWNDrsKF8gWB0L3iEsd+V+ntkf9zDcdJ/3unDZWuyNXCEvSJcosaVb2Ai NRSw== X-Gm-Message-State: AOUpUlFG5hpX7UUjCCYhUUV5KhHF1Hwuo1quWwQjIsVBPFgCrc/sDS17 Gsozdru8Upo3s69S2tWojbgIaDa2o8U= X-Google-Smtp-Source: AAOMgpcFYB5NXANoivfuckhrSWBNPPr1K5lfy+2dFngYS8ujyjzIQskZtZi82LCRKyTekmcsA1MamQ== X-Received: by 2002:a1c:9215:: with SMTP id u21-v6mr11658199wmd.106.1533565405977; Mon, 06 Aug 2018 07:23:25 -0700 (PDT) Received: from localhost.localdomain (catv-89-135-96-219.catv.broadband.hu. [89.135.96.219]) by smtp.gmail.com with ESMTPSA id d5-v6sm370448wmb.33.2018.08.06.07.23.23 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 06 Aug 2018 07:23:24 -0700 (PDT) From: Linus Walleij To: linux-gpio@vger.kernel.org Cc: Linus Walleij , linux-snps-arc@lists.infradead.org, Christian Ruppert Subject: [PATCH] gpio: tb10x: Use the right include Date: Mon, 6 Aug 2018 16:23:21 +0200 Message-Id: <20180806142321.32025-1-linus.walleij@linaro.org> X-Mailer: git-send-email 2.17.0 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org This driver includes the legacy and but all it needs is really . Cc: linux-snps-arc@lists.infradead.org Cc: Christian Ruppert Signed-off-by: Linus Walleij Acked-by: Christian Ruppert --- drivers/gpio/gpio-tb10x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpio/gpio-tb10x.c b/drivers/gpio/gpio-tb10x.c index ac6f2a9841e5..a12cd0b5c972 100644 --- a/drivers/gpio/gpio-tb10x.c +++ b/drivers/gpio/gpio-tb10x.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include @@ -30,7 +30,6 @@ #include #include #include -#include #include #include #include