From: Yu Watanabe Date: Thu, 6 Jan 2022 12:11:21 +0000 (+0900) Subject: watchdog: rebreak comments X-Git-Tag: v251-rc1~546^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b144177240bf31a6d862df20182b16c48df4930a;p=thirdparty%2Fsystemd.git watchdog: rebreak comments --- diff --git a/src/shared/watchdog.c b/src/shared/watchdog.c index ba5a7e26dd2..e8184ff661b 100644 --- a/src/shared/watchdog.c +++ b/src/shared/watchdog.c @@ -166,11 +166,9 @@ int watchdog_setup(usec_t timeout) { usec_t previous_timeout; int r; - /* timeout=0 closes the device whereas passing timeout=USEC_INFINITY - * opens it (if needed) without configuring any particular timeout and - * thus reuses the programmed value (therefore it's a nop if the device - * is already opened). - */ + /* timeout=0 closes the device whereas passing timeout=USEC_INFINITY opens it (if needed) + * without configuring any particular timeout and thus reuses the programmed value (therefore + * it's a nop if the device is already opened). */ if (timeout == 0) { watchdog_close(true); @@ -181,9 +179,8 @@ int watchdog_setup(usec_t timeout) { if (watchdog_fd >= 0 && (timeout == watchdog_timeout || timeout == USEC_INFINITY)) return 0; - /* Initialize the watchdog timeout with the caller value. This value is - * going to be updated by update_timeout() with the closest value - * supported by the driver */ + /* Initialize the watchdog timeout with the caller value. This value is going to be updated by + * update_timeout() with the closest value supported by the driver */ previous_timeout = watchdog_timeout; watchdog_timeout = timeout;