From patchwork Fri Feb 19 08:23:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 585060 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 854C01402EC for ; Fri, 19 Feb 2016 19:23:56 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linaro.org header.i=@linaro.org header.b=Brpz1g8Z; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1427243AbcBSIXz (ORCPT ); Fri, 19 Feb 2016 03:23:55 -0500 Received: from mail-lb0-f179.google.com ([209.85.217.179]:33104 "EHLO mail-lb0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1426938AbcBSIXw (ORCPT ); Fri, 19 Feb 2016 03:23:52 -0500 Received: by mail-lb0-f179.google.com with SMTP id x4so43248772lbm.0 for ; Fri, 19 Feb 2016 00:23:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=y7/cFrfZ7R1yOd6szK/UbYzaeYxzDywKJhdqQAkGiOc=; b=Brpz1g8ZC4s/ZmxM8/MVWppiBWNDTrIB4cXqXdQb5gIptSsJ01GFDi6F+o0/yVyZkX HQx5vGaP6ymwi9G1QxdljHUofEgLHG8DzP2tsk3RyDkrvPzXEuJsWVQm8UUebDnm8Qik rRGQVNqf+RFwE7+JqtxfMstCeIrmXbTZP/Lt4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=y7/cFrfZ7R1yOd6szK/UbYzaeYxzDywKJhdqQAkGiOc=; b=YuQPx/mgEIevGwdUaG4MhyqtRPREWS90BXaaO8U7BXTCSCnvZVs4cscZi5ShhyA35h hopuZm89jdOJy4Pd6QoNeIWGzfA4jaB3xQAqpM2xlLGPhe5/nAqQxmshr/IPb5Mp+6S4 Ft5rpyV3lRefn9cyBEU3xESHkyWiWclPzvu6HFhrUUfHjqiV05MdR/bwM/+EceAaFS+h UcuDflPN2iLaULs2mWH8FnxKDTIFApv7+4f2czoduL6b+W/R3gNsQ3vtFS1Js457t/9E zxB/tGk7PJCfMn2vZcvMpnVXcPz2NkTcdYsPuGLaDQ0IbIov2hQHI1l43LCUSkigZ85O JcMw== X-Gm-Message-State: AG10YOQae4xlAx4XYM2l/rzAcR4yJqMk22hGrfdEOLsYorxqJOI+ioxThU/VBGDMiK3rTUNq X-Received: by 10.112.130.193 with SMTP id og1mr4791339lbb.97.1455870231383; Fri, 19 Feb 2016 00:23:51 -0800 (PST) Received: from localhost.localdomain ([85.235.10.227]) by smtp.gmail.com with ESMTPSA id mi9sm1295935lbc.27.2016.02.19.00.23.50 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 19 Feb 2016 00:23:50 -0800 (PST) From: Linus Walleij To: linux-gpio@vger.kernel.org, Alexandre Courbot Cc: Linus Walleij Subject: [PATCH] gpio: tps65218: remove unused #include Date: Fri, 19 Feb 2016 09:23:47 +0100 Message-Id: <1455870227-3159-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 2.4.3 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org Just as it says: after adding the proper interfaces to gpiolib, this is no longer needed. Suggested-by: Nicolas Saenz Julienne Signed-off-by: Linus Walleij --- drivers/gpio/gpio-tps65218.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpio/gpio-tps65218.c b/drivers/gpio/gpio-tps65218.c index 2fc7e16aee0c..313c0e484607 100644 --- a/drivers/gpio/gpio-tps65218.c +++ b/drivers/gpio/gpio-tps65218.c @@ -17,7 +17,6 @@ #include #include #include -#include "gpiolib.h" struct tps65218_gpio { struct tps65218 *tps65218;