/linux-6.3-rc2/drivers/watchdog/ |
A D | sbc_fitpc2_wdt.c | 30 static unsigned int margin = 60; /* (secs) Default is 1 minute */ variable 57 wdt_send_data(REBOOT_COMMAND, margin); in wdt_enable() 155 margin = time; in fitpc2_wdt_ioctl() 160 ret = put_user(margin, (int __user *)arg); in fitpc2_wdt_ioctl() 223 if (margin < 31 || margin > 255) { in fitpc2_wdt_init() 225 margin); in fitpc2_wdt_init() 260 module_param(margin, int, 0); 261 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
|
A D | scx200_wdt.c | 38 static int margin = 60; /* in seconds */ variable 39 module_param(margin, int, 0); 40 MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); 67 pr_info("timer margin %d seconds\n", margin); in scx200_wdt_update_margin() 68 wdto_restart = margin * W_SCALE; in scx200_wdt_update_margin() 186 margin = new_margin; in scx200_wdt_ioctl() 191 if (put_user(margin, p)) in scx200_wdt_ioctl()
|
A D | it8712f_wdt.c | 41 static int margin = 60; /* in seconds */ variable 42 module_param(margin, int, 0); 43 MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); 151 int units = margin; in it8712f_wdt_update_margin() 295 margin = value; in it8712f_wdt_ioctl() 307 if (put_user(margin, p)) in it8712f_wdt_ioctl() 390 if (margin > (max_units * 60)) in it8712f_wdt_find() 391 margin = (max_units * 60); in it8712f_wdt_find()
|
A D | ar7_wdt.c | 37 static int margin = 60; variable 38 module_param(margin, int, 0); 39 MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); 138 margin = change * prescale_value / vbus_rate; in ar7_wdt_update_margin() 140 margin, prescale_value, change, vbus_rate); in ar7_wdt_update_margin() 238 if (put_user(margin, (int *)arg)) in ar7_wdt_ioctl() 278 ar7_wdt_update_margin(margin); in ar7_wdt_probe()
|
A D | sa1100_wdt.c | 181 static int margin = 60; /* (secs) Default is 1 minute */ variable 217 pre_margin = oscr_freq * margin; in sa1100dog_probe() 222 margin); in sa1100dog_probe() 251 module_param(margin, int, 0); 252 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
|
/linux-6.3-rc2/Documentation/sphinx-static/ |
A D | custom.css | 19 margin: 20px 10px 0 10px; 27 dl.function, dl.struct, dl.enum { margin-top: 2em; background-color: #ecf0f3; } 29 dl.function dt { margin-left: 10em; text-indent: -10em; } 31 div.kernelindent { margin-left: 2em; margin-right: 4em; } 38 margin-left: 1em; } 42 margin-left: 1em; 45 div.kerneltoc li.current ul { margin-left: 0; }
|
A D | theme_overrides.css | 106 /* fix bottom margin of lists items */ 109 margin-bottom: 12px;
|
/linux-6.3-rc2/drivers/media/rc/ |
A D | rc-core-priv.h | 167 static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin) in geq_margin() argument 169 return d1 > (d2 - margin); in geq_margin() 172 static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin) in eq_margin() argument 174 return ((d1 > (d2 - margin)) && (d1 < (d2 + margin))); in eq_margin()
|
/linux-6.3-rc2/Documentation/watchdog/ |
A D | watchdog-parameters.rst | 73 margin: 74 Watchdog margin in seconds (default=60) 118 margin: 119 Watchdog margin in seconds (default 60s) 269 margin: 270 Watchdog margin in seconds (default 60) 471 margin: 472 Watchdog margin in seconds (default 60s) 520 margin: 575 margin: [all …]
|
/linux-6.3-rc2/drivers/staging/media/atomisp/pci/isp/kernels/sdis/common/ |
A D | ia_css_sdis_common.host.h | 67 s32 margin[DVS2_PROJ_MARGIN]; member 74 s32 margin[DVS2_PROJ_MARGIN]; member
|
/linux-6.3-rc2/Documentation/gpu/ |
A D | kms-properties.csv | 7 ,,“left margin”,RANGE,"Min=0, Max=100",Connector,TBD 8 ,,“right margin”,RANGE,"Min=0, Max=100",Connector,TBD 9 ,,“top margin”,RANGE,"Min=0, Max=100",Connector,TBD 10 ,,“bottom margin”,RANGE,"Min=0, Max=100",Connector,TBD
|
/linux-6.3-rc2/drivers/gpu/drm/i915/display/ |
A D | intel_ddi_buf_trans.h | 22 u8 margin; /* swing value */ member
|
/linux-6.3-rc2/Documentation/fb/ |
A D | framebuffer.rst | 213 the sum of the left margin, the right margin and the hsync length, while the 214 vertical retrace time is the sum of the upper margin, the lower margin and the 227 | margin # | xres # margin | len |
|
A D | sh7760fb.rst | 70 * values but right/left/upper/lower margin values. The comments
|
/linux-6.3-rc2/drivers/gpu/drm/ |
A D | drm_modes.c | 2168 unsigned int deg, margin, rotation = 0; in drm_mode_parse_cmdline_options() local 2210 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2213 mode->tv_margins.right = margin; in drm_mode_parse_cmdline_options() 2215 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2218 mode->tv_margins.left = margin; in drm_mode_parse_cmdline_options() 2220 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2223 mode->tv_margins.top = margin; in drm_mode_parse_cmdline_options() 2225 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2228 mode->tv_margins.bottom = margin; in drm_mode_parse_cmdline_options()
|
/linux-6.3-rc2/drivers/net/wireless/mediatek/mt76/ |
A D | mt76x02_dfs.c | 183 static int mt76x02_dfs_get_multiple(int val, int frac, int margin) in mt76x02_dfs_get_multiple() argument 190 if (abs(val - frac) <= margin) in mt76x02_dfs_get_multiple() 196 if (remainder > margin) { in mt76x02_dfs_get_multiple() 197 if ((frac - remainder) <= margin) in mt76x02_dfs_get_multiple()
|
/linux-6.3-rc2/Documentation/devicetree/bindings/regulator/ |
A D | vctrl.txt | 21 margin from the expected value for a given control
|
/linux-6.3-rc2/drivers/video/backlight/ |
A D | pwm_bl.c | 396 unsigned int margin = (max_val - min_val) / 20; /* 5% */ in pwm_backlight_is_linear() local 403 if (delta > margin) in pwm_backlight_is_linear()
|
/linux-6.3-rc2/Documentation/driver-api/mmc/ |
A D | mmc-dev-attrs.rst | 66 useful. Because the erase timeout contains a margin
|
/linux-6.3-rc2/Documentation/hwmon/ |
A D | w83793.rst | 89 predefined value, within a tolerance margin. So if tempX_input >
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | stm32mp135f-dk.dts | 107 * Use arbitrary margin here (e.g. 5us).
|
/linux-6.3-rc2/Documentation/security/ |
A D | siphash.rst | 74 SipHash has a very high security margin, with its 128-bit key. So long as the
|
/linux-6.3-rc2/drivers/tty/vt/ |
A D | vt.c | 4760 int margin = c->vc_size_row * 4; in vc_scrolldelta_helper() local 4770 if (rolled_over > scr_end + margin) { in vc_scrolldelta_helper() 4782 if (avail < 2 * margin) in vc_scrolldelta_helper() 4783 margin = 0; in vc_scrolldelta_helper() 4784 if (from_off < margin) in vc_scrolldelta_helper() 4786 if (from_off > avail - margin) in vc_scrolldelta_helper()
|
/linux-6.3-rc2/arch/x86/boot/ |
A D | header.S | 550 # larger margin.
|
/linux-6.3-rc2/block/ |
A D | blk-iocost.c | 2456 s64 margin; in adjust_inuse_and_calc_cost() local 2462 margin = now->vnow - vtime - cost; in adjust_inuse_and_calc_cost() 2472 if (margin >= iocg->saved_margin || margin >= margins->low || in adjust_inuse_and_calc_cost()
|