summaryrefslogtreecommitdiff
path: root/v4l
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-06-08 17:13:52 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-08 17:13:52 -0300
commit48f270e2f6dff0d7521b34ba75dfa8d7cf391cd4 (patch)
tree5bda59de3f283aa4eba79649ee7fd471c27a657c /v4l
parent6b9db488d186cc23b3ab9a64fc2ad687c07407bf (diff)
downloadmediapointer-dvb-s2-48f270e2f6dff0d7521b34ba75dfa8d7cf391cd4.tar.gz
mediapointer-dvb-s2-48f270e2f6dff0d7521b34ba75dfa8d7cf391cd4.tar.bz2
Handles also hexa fields on Kconfig
From: Mauro Carvalho Chehab <mchehab@infradead.org> The same threatment to integer can also be applied Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l')
-rwxr-xr-xv4l/scripts/make_kconfig.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl
index 16135c034..0d396c8f4 100755
--- a/v4l/scripts/make_kconfig.pl
+++ b/v4l/scripts/make_kconfig.pl
@@ -120,6 +120,9 @@ sub open_kconfig($$) {
if (m|^\s+int\s|) {
add_int($key);
}
+ if (m|^\s+hex\s|) {
+ add_int($key);
+ }
# Get default for int options
if (m|^\s+default "(\d+)"| && exists $intopt{$key}) {
set_int_value($key, $1);