From patchwork Fri Sep 7 05:21:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 1419571 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id E1196DF283 for ; Fri, 7 Sep 2012 05:28:57 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T9r5I-0006eH-PI; Fri, 07 Sep 2012 05:26:28 +0000 Received: from na3sys009aog104.obsmtp.com ([74.125.149.73]) by merlin.infradead.org with smtps (Exim 4.76 #1 (Red Hat Linux)) id 1T9r5F-0006dp-Av for linux-arm-kernel@lists.infradead.org; Fri, 07 Sep 2012 05:26:26 +0000 Received: from mail-lb0-f177.google.com ([209.85.217.177]) (using TLSv1) by na3sys009aob104.postini.com ([74.125.148.12]) with SMTP ID DSNKUEmFeghDYt6eQ0tcCt6WXD/3iPNt1eNV@postini.com; Thu, 06 Sep 2012 22:26:25 PDT Received: by lbbgf7 with SMTP id gf7so1605721lbb.36 for ; Thu, 06 Sep 2012 22:26:16 -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:x-gm-message-state; bh=+fg+6yF8WFMPmj2k1hHXrY/xE2it9oiCwoXuBfJMMX8=; b=YlImfJ9kYTQqYg2u7nPqDnF4df9BbUXABkoztZ6sENK1iU6Sa42UpJq5U05ePRapZ2 6oSdj9waiwOvqvri5QoLp9qgPkSuB61N9gBf56+7oCLn3lzd3JmEChBCDM5wnXabVCK9 bjw6ks1scla66mhx8y+61bVzQM/z1ddulxTfWyLjs6fAr/J0Y3ndZrOQl4BR8iEdIa/W Fk0pcDZYx8JtbtLxQ6TU7S60++LGzZUn9v2YU1D3gNLwszrOMf27H0OVcya4xAwjNHw7 qXHqH+gYZpR0lpDKbe3FajRCmMN8yCa3+mPFUeILfTyCfOZV9OTAj/VzaZVeOivyiG+z DApw== Received: by 10.152.147.72 with SMTP id ti8mr4066807lab.20.1346995576570; Thu, 06 Sep 2012 22:26:16 -0700 (PDT) Received: from localhost (cs78217178.pp.htv.fi. [62.78.217.178]) by mx.google.com with ESMTPS id mq9sm4141038lab.0.2012.09.06.22.26.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 06 Sep 2012 22:26:15 -0700 (PDT) From: Felipe Balbi To: Greg KH Subject: [PATCH] serial: omap: fix compile breakage Date: Fri, 7 Sep 2012 08:21:52 +0300 Message-Id: <1346995312-2872-1-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.12.rc3 X-Gm-Message-State: ALoCoQlA4zn4kzEmeRTsbqPyjBbEfiqyHY2YlF0zO5y1uAJqRU2bL6VhPjvHqeI4wuzGCWoeQWwX X-Spam-Note: CRM114 invocation failed X-Spam-Score: -4.2 (----) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-4.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [74.125.149.73 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Tony Lindgren , Linux OMAP Mailing List , Felipe Balbi , Linux ARM Kernel Mailing List , linux-serial@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org when rebasing patches on top of Greg's tty-next, it looks like automerge broke a few things which I didn't catch (for whatever reason I didn't have OMAP Serial enabled on .config) so I ended up breaking the build on Greg's tty-next branch. Fix the breakage by re-adding the three missing members on struct uart_omap_port. Reported-by: Tony Lindgren Signed-off-by: Felipe Balbi --- drivers/tty/serial/omap-serial.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index e31d291..8e4a7aa 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -123,6 +123,10 @@ struct uart_omap_port { u8 wakeups_enabled; unsigned int irq_pending:1; + int DTR_gpio; + int DTR_inverted; + int DTR_active; + struct pm_qos_request pm_qos_request; u32 latency; u32 calc_latency;