From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752635AbaHTQzs (ORCPT ); Wed, 20 Aug 2014 12:55:48 -0400 Received: from mail-yh0-f46.google.com ([209.85.213.46]:34998 "EHLO mail-yh0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752580AbaHTQzq (ORCPT ); Wed, 20 Aug 2014 12:55:46 -0400 From: Pranith Kumar To: Greg Kroah-Hartman , Jiri Slaby , linux-serial@vger.kernel.org (open list:SERIAL DRIVERS), linux-kernel@vger.kernel.org (open list) Subject: [PATCH] serial: Fix build failure caused by missing header file Date: Wed, 20 Aug 2014 12:55:45 -0400 Message-Id: <1408553745-3536-2-git-send-email-bobby.prani@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1408553745-3536-1-git-send-email-bobby.prani@gmail.com> References: <1408553745-3536-1-git-send-email-bobby.prani@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix build failure caused by missing header file: drivers/tty/serial/nwpserial.c: In function 'wait_for_bits': drivers/tty/serial/nwpserial.c:53:3: error: implicit declaration of function 'udelay' [-Werror=implicit-function-declaration] Signed-off-by: Pranith Kumar --- drivers/tty/serial/nwpserial.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tty/serial/nwpserial.c b/drivers/tty/serial/nwpserial.c index c06366b..5da7622 100644 --- a/drivers/tty/serial/nwpserial.c +++ b/drivers/tty/serial/nwpserial.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include -- 1.9.1