Lines Matching refs:in
19 such as "I don't like that coding style". Keep in mind that each unnecessary
36 * Make sure the documentation in Documentation/hwmon/<driver_name> is up to
39 * Make sure the information in Kconfig is up to date.
45 * Never mix bug fixes, cleanup, and functional enhancements in a single patch.
52 formatting is clean. If unsure about formatting in your new driver, run it
58 * Document the driver in Documentation/hwmon/<driver_name>.
60 * Add the driver to Kconfig and Makefile in alphabetical order.
62 * Make sure that all dependencies are listed in Kconfig.
66 * Avoid calculations in macros and macro-generated functions. While such macros
67 may save a line or so in the source, it obfuscates the code and makes code
68 review more difficult. It may also result in code which is more complicated
78 Keep in mind that the detect function will run for all drivers supporting an
84 * Avoid writing to chip registers in the detect function. If you have to write,
88 Keep in mind that the chip might not be what your driver believes it is, and
91 * Make sure there are no race conditions in the probe function. Specifically,
101 Standard attributes are specified in Documentation/hwmon/sysfs-interface.