diff options
Diffstat (limited to 'v4l/scripts/make_kconfig.pl')
-rwxr-xr-x | v4l/scripts/make_kconfig.pl | 3 |
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); |