From patchwork Sun Jan 16 13:09:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 5600 Return-path: Envelope-to: mchehab@pedra Delivery-date: Sun, 16 Jan 2011 13:15:44 -0200 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1PeUKW-0008Ip-GD for mchehab@pedra; Sun, 16 Jan 2011 13:15:44 -0200 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Sun, 16 Jan 2011 13:15:44 -0200 (BRST) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1PeSO4-0007Ns-VN; Sun, 16 Jan 2011 13:11:17 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752786Ab1APNJS (ORCPT + 1 other); Sun, 16 Jan 2011 08:09:18 -0500 Received: from jacques.telenet-ops.be ([195.130.132.50]:38664 "EHLO jacques.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752750Ab1APNJQ convert rfc822-to-8bit (ORCPT ); Sun, 16 Jan 2011 08:09:16 -0500 Received: from ayla.of.borg ([84.193.80.148]) by jacques.telenet-ops.be with bizsmtp id wD9E1f0053C005g0JD9EhY; Sun, 16 Jan 2011 14:09:14 +0100 Received: from geert (helo=localhost) by ayla.of.borg with local-esmtp (Exim 4.71) (envelope-from ) id 1PeSM5-0006K3-9V; Sun, 16 Jan 2011 14:09:13 +0100 Date: Sun, 16 Jan 2011 14:09:13 +0100 (CET) From: Geert Uytterhoeven To: Mauro Carvalho Chehab , Andrew Morton cc: Linux Kernel Development , linux-media@vger.kernel.org Subject: [PATCH] media: radio-aimslab.c needs #include Message-ID: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: Commit e3c92215198cb6aa00ad38db2780faa6b72e0a3f ("[media] radio-aimslab.c: Fix gcc 4.5+ bug") removed the include, but introduced new callers of msleep(): | drivers/media/radio/radio-aimslab.c: In function ‘rt_decvol’: | drivers/media/radio/radio-aimslab.c:76: error: implicit declaration of function ‘msleep’ Signed-off-by: Geert Uytterhoeven --- drivers/media/radio/radio-aimslab.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index 6cc5d13..4ce10db 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c @@ -31,6 +31,7 @@ #include /* Modules */ #include /* Initdata */ #include /* request_region */ +#include /* msleep */ #include /* kernel radio structs */ #include /* for KERNEL_VERSION MACRO */ #include /* outb, outb_p */