From 48f270e2f6dff0d7521b34ba75dfa8d7cf391cd4 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Thu, 8 Jun 2006 17:13:52 -0300 Subject: Handles also hexa fields on Kconfig From: Mauro Carvalho Chehab The same threatment to integer can also be applied Signed-off-by: Mauro Carvalho Chehab --- v4l/scripts/make_kconfig.pl | 3 +++ 1 file changed, 3 insertions(+) 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); -- cgit v1.2.3