From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760900Ab2EQCc0 (ORCPT ); Wed, 16 May 2012 22:32:26 -0400 Received: from mga01.intel.com ([192.55.52.88]:3058 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760881Ab2EQCcZ (ORCPT ); Wed, 16 May 2012 22:32:25 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.71,315,1320652800"; d="scan'208";a="153859356" Date: Thu, 17 May 2012 10:32:22 +0800 From: Fengguang Wu To: Mauro Carvalho Chehab Cc: Hans Verkuil , LKML Subject: [PATCH] radio: fix build error in rtrack2_alloc() Message-ID: <20120517023222.GA7788@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix compile error drivers/media/radio/radio-rtrack2.c: In function ‘rtrack2_alloc’: drivers/media/radio/radio-rtrack2.c:46:2: error: implicit declaration of function ‘kzalloc’ CC: Hans Verkuil Signed-off-by: Fengguang Wu --- drivers/media/radio/radio-rtrack2.c | 1 + 1 file changed, 1 insertion(+) --- linux.orig/drivers/media/radio/radio-rtrack2.c 2012-04-06 13:23:52.548862660 +0800 +++ linux/drivers/media/radio/radio-rtrack2.c 2012-05-17 10:18:20.679495193 +0800 @@ -17,6 +17,7 @@ #include /* kernel radio structs */ #include #include /* outb, outb_p */ +#include /* kzalloc */ #include #include #include "radio-isa.h"