From patchwork Thu Sep 6 12:45:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 1414301 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 47B8FDFFCF for ; Thu, 6 Sep 2012 12:52:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755755Ab2IFMw2 (ORCPT ); Thu, 6 Sep 2012 08:52:28 -0400 Received: from na3sys009aog114.obsmtp.com ([74.125.149.211]:55854 "EHLO na3sys009aog114.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754957Ab2IFMvL (ORCPT ); Thu, 6 Sep 2012 08:51:11 -0400 Received: from mail-lpp01m010-f46.google.com ([209.85.215.46]) (using TLSv1) by na3sys009aob114.postini.com ([74.125.148.12]) with SMTP ID DSNKUEicPUq4mv1dwPxEnRrYdvISKOMF4rab@postini.com; Thu, 06 Sep 2012 05:51:10 PDT Received: by lagy9 with SMTP id y9so1063644lag.19 for ; Thu, 06 Sep 2012 05:51:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=y32x2z5UkRDJigApam6GnTeaWZKYZm9uq+X6a2QqQe8=; b=Sc93oOMAVWAUzC14t72aHIrF4oH84hOgkuUY2WZP2bhvwkL+ePCiHPaxR+JPZFqFYO le1+vicMvshTOSikC05seLah732bOM3kTNscTh1wMVxbkmlRD2OCV+0t98aLuEeDdfiI FYIRRihq5Rio2qBQHg6qmM70ZWDHZ1Co7UWgO+SpLpBtqCPi+eBq33Uv3PRvXRfDu6C2 DsogZTtJFn4hXXdwO9fKmIEtP09WWLQCzvYAENrWorQNlpKOT6ZTFS9PS/BdFIt19YjB TybjNuN8cXjh7buVDw6DUw94jPD1x7F+xA8mOMKydDHijJcoESu9FnJWlYeSnt/0PFbA Nerg== Received: by 10.152.148.1 with SMTP id to1mr1808596lab.34.1346935868481; Thu, 06 Sep 2012 05:51:08 -0700 (PDT) Received: from localhost (cs78217178.pp.htv.fi. [62.78.217.178]) by mx.google.com with ESMTPS id c6sm568062lbn.1.2012.09.06.05.51.06 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 06 Sep 2012 05:51:07 -0700 (PDT) From: Felipe Balbi To: Greg KH Cc: alan@linux.intel.com, Tony Lindgren , Kevin Hilman , Linux OMAP Mailing List , Linux ARM Kernel Mailing List , linux-serial@vger.kernel.org, Linux Kernel Mailing List , Santosh Shilimkar , Shubhrajyoti Datta , Sourav Poddar , Felipe Balbi Subject: [PATCH v4 19/21] serial: omap: remove unnecessary header and add a missing one Date: Thu, 6 Sep 2012 15:45:38 +0300 Message-Id: <1346935540-1792-20-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.12.rc3 In-Reply-To: <1346935540-1792-1-git-send-email-balbi@ti.com> References: <20120906122948.GC29202@arwen.pp.htv.fi> <1346935540-1792-1-git-send-email-balbi@ti.com> X-Gm-Message-State: ALoCoQkFPpq1IqpkYgRqu4B1DpjPjAdzCf+VM7rcG0XstDKN1DtPs2x80fQm2AoGSjeSeGYAiMz8 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org this driver doesn't use any from , so we can remove it without any problems. This will, however cause a problem because omap-serial.c was relying on indirect inclusion of , let's fix the issue by including on omap-serial.c as it should be. Tested-by: Shubhrajyoti D Signed-off-by: Felipe Balbi --- drivers/tty/serial/omap-serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 1ba1f43..881b652 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -40,7 +41,6 @@ #include #include -#include #include #define UART_BUILD_REVISION(x, y) (((x) << 8) | (y))