From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754633Ab1C1PX0 (ORCPT ); Mon, 28 Mar 2011 11:23:26 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:36655 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753269Ab1C1PXY (ORCPT ); Mon, 28 Mar 2011 11:23:24 -0400 Date: Mon, 28 Mar 2011 08:23:05 -0700 From: Randy Dunlap To: linux-media@vger.kernel.org, Stephen Rothwell , gregkh@suse.de Cc: Mauro Carvalho Chehab , linux-next@vger.kernel.org, LKML , "Igor M. Liplianin" Subject: Fw: [PATCH -next RESEND/still needed] staging: altera-jtag needs delay.h Message-Id: <20110328082305.c6fa41d9.randy.dunlap@oracle.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Source-IP: acsmt358.oracle.com [141.146.40.158] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090207.4D90A7DF.00DA,ss=1,fgs=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap altera-jtag.c needs to include to fix a build error: drivers/staging/altera-stapl/altera-jtag.c:398: error: implicit declaration of function 'udelay' Signed-off-by: Randy Dunlap Cc: Igor M. Liplianin --- drivers/staging/altera-stapl/altera-jtag.c | 1 + 1 file changed, 1 insertion(+) Somehow I was supposed to know to send this to Mauro instead of to Greg, but I don't see anything in drivers/staging/altera-stapl/ that says that. --- linux-next-20110304.orig/drivers/staging/altera-stapl/altera-jtag.c +++ linux-next-20110304/drivers/staging/altera-stapl/altera-jtag.c @@ -23,6 +23,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include #include #include #include --