diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-02-13 18:21:14 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-02-13 18:21:14 -0200 |
commit | a276bad648b7122321a2295550c71a9ce2f65628 (patch) | |
tree | 52fa6e7ad9a94dcca65fca1d258b613bf47b4ade /v4l | |
parent | 12a53c2ca239e0fd7a2b858b577d624677982ab9 (diff) | |
parent | 49fc22258898cb08a91f48cd3940f6d530d88dc5 (diff) | |
download | mediapointer-dvb-s2-a276bad648b7122321a2295550c71a9ce2f65628.tar.gz mediapointer-dvb-s2-a276bad648b7122321a2295550c71a9ce2f65628.tar.bz2 |
merge: http://www.linuxtv.org/hg/~hverkuil/v4l-dvb-rds
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'v4l')
-rwxr-xr-x | v4l/scripts/make_kconfig.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl index 7c259eeb6..144325c34 100755 --- a/v4l/scripts/make_kconfig.pl +++ b/v4l/scripts/make_kconfig.pl @@ -537,6 +537,11 @@ if (!defined $kernopts{HAS_IOMEM} && cmp_ver($kernver, '2.6.22') < 0) { $kernopts{HAS_IOMEM} = 2; } +# Kernel < 2.6.22 is missing the HAS_DMA option +if (!defined $kernopts{HAS_DMA} && cmp_ver($kernver, '2.6.22') < 0) { + $kernopts{HAS_DMA} = 2; +} + # Kernel < 2.6.23 is missing the VIRT_TO_BUS option if (!defined $kernopts{VIRT_TO_BUS} && cmp_ver($kernver, '2.6.23') < 0) { # VIRT_TO_BUS -> !PPC64 |