From patchwork Thu Aug 23 10:33:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 1365641 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 3285D3FC66 for ; Thu, 23 Aug 2012 10:38:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933916Ab2HWKi3 (ORCPT ); Thu, 23 Aug 2012 06:38:29 -0400 Received: from na3sys009aog120.obsmtp.com ([74.125.149.140]:38320 "EHLO na3sys009aog120.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933891Ab2HWKiD (ORCPT ); Thu, 23 Aug 2012 06:38:03 -0400 Received: from mail-lb0-f175.google.com ([209.85.217.175]) (using TLSv1) by na3sys009aob120.postini.com ([74.125.148.12]) with SMTP ID DSNKUDYICo8bf82CwKAjtBBVTGu0beyFPlwb@postini.com; Thu, 23 Aug 2012 03:38:03 PDT Received: by lban1 with SMTP id n1so314580lba.34 for ; Thu, 23 Aug 2012 03:38:00 -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=NflAQpeyU6lmO3hKWVPj5wd83k4dJEUjweCLppvm3IQ=; b=EDoSa7GZCo+AcwXg/TdZGqi4TPDLJPIALtJ7qEjhpPWVKo/XwHqA+BypDzERyT4lKQ zCtZCzCXZjvkyVNBLoSpkj4Bk+Jr2mywNAL3LIOD81E9M+3Er4iW6gsobUm9YUyZ/zAR EVRJsYKXNp+35YJHTUVO8I6KiqLzOhwMrKrwYnQO2iA3TcoH5DHV/RNKBaLAnIalN/yF tsESywN+4y8ZStBWUjKA8bNwPqWZL90fwae9WVwsKvksxnmItwXr7ucazCvpldRVnUKz LNgx70P05adkN2DqUtTDw4siRAXgJI67wOtxghHEQHkpYkKL1dWcXVmzypEao1xigzyf ac/A== Received: by 10.112.84.199 with SMTP id b7mr703969lbz.29.1345718280595; Thu, 23 Aug 2012 03:38:00 -0700 (PDT) Received: from localhost (cs78217178.pp.htv.fi. [62.78.217.178]) by mx.google.com with ESMTPS id j3sm1785940lbh.0.2012.08.23.03.37.59 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 23 Aug 2012 03:37:59 -0700 (PDT) From: Felipe Balbi To: alan@linux.intel.com Cc: 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 v3 21/23] serial: omap: remove unnecessary header and add a missing one Date: Thu, 23 Aug 2012 13:33:01 +0300 Message-Id: <1345717983-18179-22-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.12.rc3 In-Reply-To: <1345717983-18179-1-git-send-email-balbi@ti.com> References: <1345717983-18179-1-git-send-email-balbi@ti.com> X-Gm-Message-State: ALoCoQnqIduQtkAzv2xHtIYE1Shh9lugbpO2i12sD4mOIuJqS2G0Ocbn50auZDmVxJ8AqVlS1hOh 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 d49981d..e5a56cb 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 @@ -39,7 +40,6 @@ #include #include -#include #include #define UART_BUILD_REVISION(x, y) (((x) << 8) | (y))