conf_nitpick.py 3.0 KB

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