summaryrefslogtreecommitdiff
path: root/Documentation/media/conf_nitpick.py
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2016-08-29 08:39:47 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-09-09 09:20:49 -0300
commitb3ef4445fccb169480c0b6ea76e8b36c94af2a16 (patch)
treec3ca09afb6ccbdd00d22d081c0333e3a98201aff /Documentation/media/conf_nitpick.py
parent22c4003364437b4a3ddd36bd19b2080f1a20d372 (diff)
[media] conf_nitpick.py: add external vars to ignore list
There a some other types and functions that aren't declared inside the media document but are elsewhere. Add them to the ignore list. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/media/conf_nitpick.py')
-rw-r--r--Documentation/media/conf_nitpick.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/Documentation/media/conf_nitpick.py b/Documentation/media/conf_nitpick.py
index 227deee68c88..4de9533ce361 100644
--- a/Documentation/media/conf_nitpick.py
+++ b/Documentation/media/conf_nitpick.py
@@ -21,8 +21,11 @@ nitpick_ignore = [
("c:func", "clock_gettime"),
("c:func", "close"),
("c:func", "container_of"),
+ ("c:func", "copy_from_user"),
+ ("c:func", "copy_to_user"),
("c:func", "determine_valid_ioctls"),
("c:func", "ERR_PTR"),
+ ("c:func", "i2c_new_device"),
("c:func", "ioctl"),
("c:func", "IS_ERR"),
("c:func", "mmap"),
@@ -37,6 +40,7 @@ nitpick_ignore = [
("c:func", "struct pollfd"),
("c:func", "usb_make_path"),
("c:func", "write"),
+
("c:type", "atomic_t"),
("c:type", "bool"),
("c:type", "boolean"),
@@ -72,10 +76,10 @@ nitpick_ignore = [
("c:type", "spi_device"),
("c:type", "spi_master"),
("c:type", "ssize_t"),
- ("c:type", "struct fb_fix_screeninfo"),
- ("c:type", "struct pollfd"),
- ("c:type", "struct timeval"),
- ("c:type", "struct video_capability"),
+ ("c:type", "fb_fix_screeninfo"),
+ ("c:type", "pollfd"),
+ ("c:type", "timeval"),
+ ("c:type", "video_capability"),
("c:type", "timeval"),
("c:type", "__u16"),
("c:type", "u16"),
@@ -87,6 +91,7 @@ nitpick_ignore = [
("c:type", "uint16_t"),
("c:type", "uint32_t"),
("c:type", "union"),
+ ("c:type", "__user"),
("c:type", "usb_device"),
("c:type", "video_system_t"),
]