From patchwork Mon Apr 6 02:14:43 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Beregalov X-Patchwork-Id: 16474 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n362EwrC019295 for ; Mon, 6 Apr 2009 02:14:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753738AbZDFCOz (ORCPT ); Sun, 5 Apr 2009 22:14:55 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753679AbZDFCOz (ORCPT ); Sun, 5 Apr 2009 22:14:55 -0400 Received: from fg-out-1718.google.com ([72.14.220.159]:61911 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753738AbZDFCOy (ORCPT ); Sun, 5 Apr 2009 22:14:54 -0400 Received: by fg-out-1718.google.com with SMTP id e12so729004fga.17 for ; Sun, 05 Apr 2009 19:14:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=/OceDsw+r3d69qL6fBnt1IZ3d1MLR4yS6CFpzkmB8xI=; b=tT0KcoqzOkCtQf+cwqi8br96jrNAicq5+8YIiETD0De3TgqcxdSP/9uBjIWrZm+sCm LYKm2WA5ZGumzBdUWTEP4ifoEyq4VBolzGFszttMGi+57LNbeGkQvW77Oek8V3cbWcD1 siUCuIAcZI7P2+6nCF4BaA7sryeEZsLRuj4tI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=NfhQKE98WS3QJ3j2UZh6dNTmVNlSYn9VHNvUqC1cozZq+sobKxLu0oRTvGUNDOPlqF 7N40HmEIQLCZqpbT+/YTZ2yuVaBZroy1844G8CEaIQPEgTpXgmRP8avIgH1BknUEJ7YK bQYYD+odsbgq0kLjev7AZrI4VXai5zUuvIf40= Received: by 10.86.27.19 with SMTP id a19mr2670244fga.29.1238984091763; Sun, 05 Apr 2009 19:14:51 -0700 (PDT) Received: from orion ([91.78.159.119]) by mx.google.com with ESMTPS id e11sm6492881fga.10.2009.04.05.19.14.50 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 05 Apr 2009 19:14:51 -0700 (PDT) Date: Mon, 6 Apr 2009 06:14:43 +0400 From: Alexander Beregalov To: mchehab@infradead.org, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] au0828: fix Kconfig dependance Message-ID: <20090406021443.GA21068@orion> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Fix this build error: ERROR: "videobuf_queue_vmalloc_init" [drivers/media/video/au0828/au0828.ko] undefined! ERROR: "videobuf_vmalloc_free" [drivers/media/video/au0828/au0828.ko] undefined! ERROR: "videobuf_to_vmalloc" [drivers/media/video/au0828/au0828.ko] undefined! Signed-off-by: Alexander Beregalov --- drivers/media/video/au0828/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/media/video/au0828/Kconfig b/drivers/media/video/au0828/Kconfig index 05cdf49..0c3a5ba 100644 --- a/drivers/media/video/au0828/Kconfig +++ b/drivers/media/video/au0828/Kconfig @@ -4,6 +4,7 @@ config VIDEO_AU0828 depends on I2C && INPUT && DVB_CORE && USB && VIDEO_V4L2 select I2C_ALGOBIT select VIDEO_TVEEPROM + select VIDEOBUF_VMALLOC select DVB_AU8522 if !DVB_FE_CUSTOMISE select MEDIA_TUNER_XC5000 if !MEDIA_TUNER_CUSTOMISE select MEDIA_TUNER_MXL5007T if !MEDIA_TUNER_CUSTOMISE