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