~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/userspace-api/media/conf_nitpick.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/userspace-api/media/conf_nitpick.py (Architecture sparc64) and /Documentation/userspace-api/media/conf_nitpick.py (Architecture ppc)


  1 # -*- coding: utf-8; mode: python -*-               1 # -*- coding: utf-8; mode: python -*-
  2                                                     2 
  3 # SPDX-License-Identifier: GPL-2.0                  3 # SPDX-License-Identifier: GPL-2.0
  4                                                     4 
  5 project = 'Linux Media Subsystem Documentation      5 project = 'Linux Media Subsystem Documentation'
  6                                                     6 
  7 # It is possible to run Sphinx in nickpick mod      7 # It is possible to run Sphinx in nickpick mode with:
  8 nitpicky = True                                     8 nitpicky = True
  9                                                     9 
 10 # within nit-picking build, do not refer to an     10 # within nit-picking build, do not refer to any intersphinx object
 11 intersphinx_mapping = {}                           11 intersphinx_mapping = {}
 12                                                    12 
 13 # In nickpick mode, it will complain about lot     13 # In nickpick mode, it will complain about lots of missing references that
 14 #                                                  14 #
 15 # 1) are just typedefs like: bool, __u32, etc;     15 # 1) are just typedefs like: bool, __u32, etc;
 16 # 2) It will complain for things like: enum, N     16 # 2) It will complain for things like: enum, NULL;
 17 # 3) It will complain for symbols that should      17 # 3) It will complain for symbols that should be on different
 18 #    books (but currently aren't ported to ReS     18 #    books (but currently aren't ported to ReST)
 19 #                                                  19 #
 20 # The list below has a list of such symbols to     20 # The list below has a list of such symbols to be ignored in nitpick mode
 21 #                                                  21 #
 22 nitpick_ignore = [                                 22 nitpick_ignore = [
 23     ("c:func", "clock_gettime"),                   23     ("c:func", "clock_gettime"),
 24     ("c:func", "close"),                           24     ("c:func", "close"),
 25     ("c:func", "container_of"),                    25     ("c:func", "container_of"),
 26     ("c:func", "copy_from_user"),                  26     ("c:func", "copy_from_user"),
 27     ("c:func", "copy_to_user"),                    27     ("c:func", "copy_to_user"),
 28     ("c:func", "determine_valid_ioctls"),          28     ("c:func", "determine_valid_ioctls"),
 29     ("c:func", "ERR_PTR"),                         29     ("c:func", "ERR_PTR"),
 30     ("c:func", "i2c_new_client_device"),           30     ("c:func", "i2c_new_client_device"),
 31     ("c:func", "ioctl"),                           31     ("c:func", "ioctl"),
 32     ("c:func", "IS_ERR"),                          32     ("c:func", "IS_ERR"),
 33     ("c:func", "KERNEL_VERSION"),                  33     ("c:func", "KERNEL_VERSION"),
 34     ("c:func", "mmap"),                            34     ("c:func", "mmap"),
 35     ("c:func", "open"),                            35     ("c:func", "open"),
 36     ("c:func", "pci_name"),                        36     ("c:func", "pci_name"),
 37     ("c:func", "poll"),                            37     ("c:func", "poll"),
 38     ("c:func", "PTR_ERR"),                         38     ("c:func", "PTR_ERR"),
 39     ("c:func", "read"),                            39     ("c:func", "read"),
 40     ("c:func", "release"),                         40     ("c:func", "release"),
 41     ("c:func", "set"),                             41     ("c:func", "set"),
 42     ("c:func", "struct fd_set"),                   42     ("c:func", "struct fd_set"),
 43     ("c:func", "struct pollfd"),                   43     ("c:func", "struct pollfd"),
 44     ("c:func", "usb_make_path"),                   44     ("c:func", "usb_make_path"),
 45     ("c:func", "wait_finish"),                     45     ("c:func", "wait_finish"),
 46     ("c:func", "wait_prepare"),                    46     ("c:func", "wait_prepare"),
 47     ("c:func", "write"),                           47     ("c:func", "write"),
 48                                                    48 
 49     ("c:type", "atomic_t"),                        49     ("c:type", "atomic_t"),
 50     ("c:type", "bool"),                            50     ("c:type", "bool"),
 51     ("c:type", "boolean"),                         51     ("c:type", "boolean"),
 52     ("c:type", "buf_queue"),                       52     ("c:type", "buf_queue"),
 53     ("c:type", "device"),                          53     ("c:type", "device"),
 54     ("c:type", "device_driver"),                   54     ("c:type", "device_driver"),
 55     ("c:type", "device_node"),                     55     ("c:type", "device_node"),
 56     ("c:type", "enum"),                            56     ("c:type", "enum"),
 57     ("c:type", "fd"),                              57     ("c:type", "fd"),
 58     ("c:type", "fd_set"),                          58     ("c:type", "fd_set"),
 59     ("c:type", "file"),                            59     ("c:type", "file"),
 60     ("c:type", "i2c_adapter"),                     60     ("c:type", "i2c_adapter"),
 61     ("c:type", "i2c_board_info"),                  61     ("c:type", "i2c_board_info"),
 62     ("c:type", "i2c_client"),                      62     ("c:type", "i2c_client"),
 63     ("c:type", "int16_t"),                         63     ("c:type", "int16_t"),
 64     ("c:type", "ktime_t"),                         64     ("c:type", "ktime_t"),
 65     ("c:type", "led_classdev_flash"),              65     ("c:type", "led_classdev_flash"),
 66     ("c:type", "list_head"),                       66     ("c:type", "list_head"),
 67     ("c:type", "lock_class_key"),                  67     ("c:type", "lock_class_key"),
 68     ("c:type", "module"),                          68     ("c:type", "module"),
 69     ("c:type", "mutex"),                           69     ("c:type", "mutex"),
 70     ("c:type", "NULL"),                            70     ("c:type", "NULL"),
 71     ("c:type", "off_t"),                           71     ("c:type", "off_t"),
 72     ("c:type", "pci_dev"),                         72     ("c:type", "pci_dev"),
 73     ("c:type", "pdvbdev"),                         73     ("c:type", "pdvbdev"),
 74     ("c:type", "poll_table"),                      74     ("c:type", "poll_table"),
 75     ("c:type", "platform_device"),                 75     ("c:type", "platform_device"),
 76     ("c:type", "pollfd"),                          76     ("c:type", "pollfd"),
 77     ("c:type", "poll_table_struct"),               77     ("c:type", "poll_table_struct"),
 78     ("c:type", "s32"),                             78     ("c:type", "s32"),
 79     ("c:type", "s64"),                             79     ("c:type", "s64"),
 80     ("c:type", "sd"),                              80     ("c:type", "sd"),
 81     ("c:type", "size_t"),                          81     ("c:type", "size_t"),
 82     ("c:type", "spi_board_info"),                  82     ("c:type", "spi_board_info"),
 83     ("c:type", "spi_device"),                      83     ("c:type", "spi_device"),
 84     ("c:type", "spi_master"),                      84     ("c:type", "spi_master"),
 85     ("c:type", "ssize_t"),                         85     ("c:type", "ssize_t"),
 86     ("c:type", "fb_fix_screeninfo"),               86     ("c:type", "fb_fix_screeninfo"),
 87     ("c:type", "pollfd"),                          87     ("c:type", "pollfd"),
 88     ("c:type", "timeval"),                         88     ("c:type", "timeval"),
 89     ("c:type", "video_capability"),                89     ("c:type", "video_capability"),
 90     ("c:type", "timeval"),                         90     ("c:type", "timeval"),
 91     ("c:type", "__u16"),                           91     ("c:type", "__u16"),
 92     ("c:type", "u16"),                             92     ("c:type", "u16"),
 93     ("c:type", "__u32"),                           93     ("c:type", "__u32"),
 94     ("c:type", "u32"),                             94     ("c:type", "u32"),
 95     ("c:type", "__u64"),                           95     ("c:type", "__u64"),
 96     ("c:type", "u64"),                             96     ("c:type", "u64"),
 97     ("c:type", "u8"),                              97     ("c:type", "u8"),
 98     ("c:type", "uint16_t"),                        98     ("c:type", "uint16_t"),
 99     ("c:type", "uint32_t"),                        99     ("c:type", "uint32_t"),
100     ("c:type", "union"),                          100     ("c:type", "union"),
101     ("c:type", "__user"),                         101     ("c:type", "__user"),
102     ("c:type", "usb_device"),                     102     ("c:type", "usb_device"),
103     ("c:type", "usb_interface"),                  103     ("c:type", "usb_interface"),
104     ("c:type", "v4l2_std_id"),                    104     ("c:type", "v4l2_std_id"),
105     ("c:type", "video_system_t"),                 105     ("c:type", "video_system_t"),
106     ("c:type", "vm_area_struct"),                 106     ("c:type", "vm_area_struct"),
107                                                   107 
108     # Opaque structures                           108     # Opaque structures
109                                                   109 
110     ("c:type", "v4l2_m2m_dev"),                   110     ("c:type", "v4l2_m2m_dev"),
111 ]                                                 111 ]
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php