/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_STRINGIFY_H #define __LINUX_STRINGIFY_H /* Indirect stringification. Doing two levels allows the parameter to be a * macro itself. For example, compile with -DFOO=bar, __stringify(FOO) * converts to "bar". */ #define __stringify_1(x...) #x #define __stringify(x...) __stringify_1(x) #endif /* !__LINUX_STRINGIFY_H */ l='vcs-git' href='https://universe.0xinfinity.dev/distro/kernel' title='kernel Git repository'/>
summaryrefslogtreecommitdiff
path: root/Documentation/hwmon/pmbus.rst
AgeCommit message (Expand)Author
2020-07-24docs: hwmon: Replace HTTP links with HTTPS onesAlexander A. Klimov
2020-03-08hwmon: (pmbus) Implement multi-phase supportGuenter Roeck
2020-01-23hwmon: (pmbus) Add MAX20796 to devices supported by generic pmbus driverGuenter Roeck
2019-04-17docs: hwmon: Add an index file and rename docs to *.rstMauro Carvalho Chehab