/drivers/clk/sunxi-ng/ |
D | ccu_mult.h | 17 #define _SUNXI_CCU_MULT_OFFSET_MIN_MAX(_shift, _width, _offset, _min, _max) \ argument 19 .min = _min, \ 26 #define _SUNXI_CCU_MULT_MIN(_shift, _width, _min) \ argument 27 _SUNXI_CCU_MULT_OFFSET_MIN_MAX(_shift, _width, 1, _min, 0)
|
/drivers/net/ethernet/sfc/falcon/ |
D | falcon_boards.c | 52 #define LM87_IN_LIMITS(nr, _min, _max) \ argument 53 0x2B + (nr) * 2, _max, 0x2C + (nr) * 2, _min 54 #define LM87_AIN_LIMITS(nr, _min, _max) \ argument 55 0x3B + (nr), _max, 0x1A + (nr), _min 56 #define LM87_TEMP_INT_LIMITS(_min, _max) \ argument 57 0x39, _max, 0x3A, _min 58 #define LM87_TEMP_EXT1_LIMITS(_min, _max) \ argument 59 0x37, _max, 0x38, _min
|
/drivers/regulator/ |
D | rk808-regulator.c | 69 #define RK817_BOOST_DESC(_id, _match, _supply, _min, _max, _step, _vreg,\ argument 78 .n_voltages = (((_max) - (_min)) / (_step) + 1), \ 80 .min_uV = (_min) * 1000, \ 93 #define RK8XX_DESC_COM(_id, _match, _supply, _min, _max, _step, _vreg, \ argument 102 .n_voltages = (((_max) - (_min)) / (_step) + 1), \ 104 .min_uV = (_min) * 1000, \ 116 #define RK805_DESC(_id, _match, _supply, _min, _max, _step, _vreg, \ argument 118 RK8XX_DESC_COM(_id, _match, _supply, _min, _max, _step, _vreg, \ 121 #define RK8XX_DESC(_id, _match, _supply, _min, _max, _step, _vreg, \ argument 123 RK8XX_DESC_COM(_id, _match, _supply, _min, _max, _step, _vreg, \ [all …]
|
D | bd9571mwv-regulator.c | 34 #define BD9571MWV_REG(_name, _of, _id, _ops, _vr, _vm, _nv, _min, _step, _lmin)\ argument 46 .min_uV = _min, \
|
D | axp20x-regulator.c | 272 #define AXP_DESC_IO(_family, _id, _match, _supply, _min, _max, _step, _vreg, \ argument 281 .n_voltages = (((_max) - (_min)) / (_step) + 1), \ 283 .min_uV = (_min) * 1000, \ 294 #define AXP_DESC(_family, _id, _match, _supply, _min, _max, _step, _vreg, \ argument 303 .n_voltages = (((_max) - (_min)) / (_step) + 1), \ 305 .min_uV = (_min) * 1000, \
|
D | max8998.c | 388 #define MAX8998_LINEAR_REG(_name, _ops, _min, _step, _max) \ argument 393 .min_uV = (_min), \ 395 .n_voltages = ((_max) - (_min)) / (_step) + 1, \
|
D | slg51000-regulator.c | 216 #define SLG51000_REGL_DESC(_id, _name, _s_name, _min, _step) \ argument 226 .min_uV = _min, \
|
/drivers/pinctrl/mediatek/ |
D | pinctrl-mtk-common.h | 86 #define MTK_DRV_GRP(_min, _max, _low, _high, _step) \ argument 88 .min_drv = _min, \
|
/drivers/hwmon/ |
D | max197.c | 218 static SENSOR_DEVICE_ATTR_2(in##chan##_min, S_IRUGO | S_IWUSR, \ 230 &sensor_dev_attr_in##chan##_min.dev_attr.attr
|
D | asb100.c | 273 static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \ 392 static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
|
D | dme1737.c | 1514 static SENSOR_DEVICE_ATTR_2(in##ix##_min, S_IRUGO | S_IWUSR, \ 1535 static SENSOR_DEVICE_ATTR_2(temp##ix##_min, S_IRUGO | S_IWUSR, \ 1573 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \ 1590 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
|
D | vt1211.c | 914 SENSOR_ATTR_2(in##ix##_min, S_IRUGO | S_IWUSR, \ 1009 SENSOR_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
|
D | w83781d.c | 284 static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \ 921 &sensor_dev_attr_in##X##_min.dev_attr.attr, \ 928 &sensor_dev_attr_fan##X##_min.dev_attr.attr, \
|
D | w83627hf.c | 1317 &sensor_dev_attr_in##_X_##_min.dev_attr.attr, \ 1324 &sensor_dev_attr_fan##_X_##_min.dev_attr.attr, \
|
D | w83793.c | 1021 SENSOR_ATTR_2(in##index##_min, S_IRUGO | S_IWUSR, show_in, \ 1036 SENSOR_ATTR_2(fan##index##_min, S_IWUSR | S_IRUGO, \
|
D | w83795.c | 1614 SENSOR_ATTR_2(in##index##_min, S_IRUGO | S_IWUSR, show_in, \ 1629 SENSOR_ATTR_2(fan##index##_min, S_IWUSR | S_IRUGO, \
|
/drivers/misc/sgi-xp/ |
D | xpc.h | 27 #define _XPC_VERSION(_maj, _min) (((_maj) << 4) | ((_min) & 0xf)) argument
|
/drivers/media/v4l2-core/ |
D | v4l2-common.c | 66 int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 _min, s32 _max, s32 _step, s32 _def) in v4l2_ctrl_query_fill() argument 69 s64 min = _min; in v4l2_ctrl_query_fill()
|
/drivers/usb/dwc2/ |
D | params.c | 599 #define CHECK_RANGE(_param, _min, _max, _def) do { \ argument 600 if ((int)(hsotg->params._param) < (_min) || \
|
/drivers/clk/renesas/ |
D | r9a06g032-clocks.c | 79 #define D_DIV(_idx, _n, _src, _reg, _min, _max, ...) \ argument 82 .reg = _reg, .div_min = _min, .div_max = _max, \
|