From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Fw: [PATCH -next RESEND/still needed] staging: altera-jtag needs delay.h Date: Mon, 28 Mar 2011 08:23:05 -0700 Message-ID: <20110328082305.c6fa41d9.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Sender: linux-kernel-owner@vger.kernel.org To: linux-media@vger.kernel.org, Stephen Rothwell , gregkh@suse.de Cc: Mauro Carvalho Chehab , linux-next@vger.kernel.org, LKML , "Igor M. Liplianin" List-Id: linux-next.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 --