* [PATCH 1/2] watchdog: include: fix some typos
@ 2015-11-03 8:00 Wolfram Sang
2015-11-03 8:00 ` [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc Wolfram Sang
2015-11-03 14:47 ` [PATCH 1/2] watchdog: include: fix some typos Guenter Roeck
0 siblings, 2 replies; 4+ messages in thread
From: Wolfram Sang @ 2015-11-03 8:00 UTC (permalink / raw)
To: linux-watchdog; +Cc: Wolfram Sang, Wim Van Sebroeck, linux-sh
From: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
include/linux/watchdog.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
index d74a0e907b9e76..fbd752de3a24d5 100644
--- a/include/linux/watchdog.h
+++ b/include/linux/watchdog.h
@@ -25,7 +25,7 @@ struct watchdog_device;
* @ping: The routine that sends a keepalive ping to the watchdog device.
* @status: The routine that shows the status of the watchdog device.
* @set_timeout:The routine for setting the watchdog devices timeout value.
- * @get_timeleft:The routine that get's the time that's left before a reset.
+ * @get_timeleft:The routine that gets the time left before a reset.
* @ref: The ref operation for dyn. allocated watchdog_device structs
* @unref: The unref operation for dyn. allocated watchdog_device structs
* @ioctl: The routines that handles extra ioctl calls.
@@ -33,7 +33,7 @@ struct watchdog_device;
* The watchdog_ops structure contains a list of low-level operations
* that control a watchdog device. It also contains the module that owns
* these operations. The start and stop function are mandatory, all other
- * functions are optonal.
+ * functions are optional.
*/
struct watchdog_ops {
struct module *owner;
--
2.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc
2015-11-03 8:00 [PATCH 1/2] watchdog: include: fix some typos Wolfram Sang
@ 2015-11-03 8:00 ` Wolfram Sang
2015-11-03 14:48 ` Guenter Roeck
2015-11-03 14:47 ` [PATCH 1/2] watchdog: include: fix some typos Guenter Roeck
1 sibling, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2015-11-03 8:00 UTC (permalink / raw)
To: linux-watchdog; +Cc: Wolfram Sang, Wim Van Sebroeck, linux-sh
From: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
include/linux/watchdog.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
index fbd752de3a24d5..4e99a267878d21 100644
--- a/include/linux/watchdog.h
+++ b/include/linux/watchdog.h
@@ -24,8 +24,8 @@ struct watchdog_device;
* @stop: The routine for stopping the watchdog device.
* @ping: The routine that sends a keepalive ping to the watchdog device.
* @status: The routine that shows the status of the watchdog device.
- * @set_timeout:The routine for setting the watchdog devices timeout value.
- * @get_timeleft:The routine that gets the time left before a reset.
+ * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds).
+ * @get_timeleft:The routine that gets the time left before a reset (in seconds).
* @ref: The ref operation for dyn. allocated watchdog_device structs
* @unref: The unref operation for dyn. allocated watchdog_device structs
* @ioctl: The routines that handles extra ioctl calls.
@@ -59,9 +59,9 @@ struct watchdog_ops {
* @info: Pointer to a watchdog_info structure.
* @ops: Pointer to the list of watchdog operations.
* @bootstatus: Status of the watchdog device at boot.
- * @timeout: The watchdog devices timeout value.
- * @min_timeout:The watchdog devices minimum timeout value.
- * @max_timeout:The watchdog devices maximum timeout value.
+ * @timeout: The watchdog devices timeout value (in seconds).
+ * @min_timeout:The watchdog devices minimum timeout value (in seconds).
+ * @max_timeout:The watchdog devices maximum timeout value (in seconds).
* @driver-data:Pointer to the drivers private data.
* @lock: Lock for watchdog core internal use only.
* @status: Field that contains the devices internal status bits.
--
2.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc
2015-11-03 8:00 ` [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc Wolfram Sang
@ 2015-11-03 14:48 ` Guenter Roeck
0 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2015-11-03 14:48 UTC (permalink / raw)
To: Wolfram Sang, linux-watchdog; +Cc: Wim Van Sebroeck, linux-sh
On 11/03/2015 12:00 AM, Wolfram Sang wrote:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> include/linux/watchdog.h | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
> index fbd752de3a24d5..4e99a267878d21 100644
> --- a/include/linux/watchdog.h
> +++ b/include/linux/watchdog.h
> @@ -24,8 +24,8 @@ struct watchdog_device;
> * @stop: The routine for stopping the watchdog device.
> * @ping: The routine that sends a keepalive ping to the watchdog device.
> * @status: The routine that shows the status of the watchdog device.
> - * @set_timeout:The routine for setting the watchdog devices timeout value.
> - * @get_timeleft:The routine that gets the time left before a reset.
> + * @set_timeout:The routine for setting the watchdog devices timeout value (in seconds).
> + * @get_timeleft:The routine that gets the time left before a reset (in seconds).
> * @ref: The ref operation for dyn. allocated watchdog_device structs
> * @unref: The unref operation for dyn. allocated watchdog_device structs
> * @ioctl: The routines that handles extra ioctl calls.
> @@ -59,9 +59,9 @@ struct watchdog_ops {
> * @info: Pointer to a watchdog_info structure.
> * @ops: Pointer to the list of watchdog operations.
> * @bootstatus: Status of the watchdog device at boot.
> - * @timeout: The watchdog devices timeout value.
> - * @min_timeout:The watchdog devices minimum timeout value.
> - * @max_timeout:The watchdog devices maximum timeout value.
> + * @timeout: The watchdog devices timeout value (in seconds).
> + * @min_timeout:The watchdog devices minimum timeout value (in seconds).
> + * @max_timeout:The watchdog devices maximum timeout value (in seconds).
> * @driver-data:Pointer to the drivers private data.
> * @lock: Lock for watchdog core internal use only.
> * @status: Field that contains the devices internal status bits.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] watchdog: include: fix some typos
2015-11-03 8:00 [PATCH 1/2] watchdog: include: fix some typos Wolfram Sang
2015-11-03 8:00 ` [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc Wolfram Sang
@ 2015-11-03 14:47 ` Guenter Roeck
1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2015-11-03 14:47 UTC (permalink / raw)
To: Wolfram Sang, linux-watchdog; +Cc: Wim Van Sebroeck, linux-sh
On 11/03/2015 12:00 AM, Wolfram Sang wrote:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> include/linux/watchdog.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
> index d74a0e907b9e76..fbd752de3a24d5 100644
> --- a/include/linux/watchdog.h
> +++ b/include/linux/watchdog.h
> @@ -25,7 +25,7 @@ struct watchdog_device;
> * @ping: The routine that sends a keepalive ping to the watchdog device.
> * @status: The routine that shows the status of the watchdog device.
> * @set_timeout:The routine for setting the watchdog devices timeout value.
> - * @get_timeleft:The routine that get's the time that's left before a reset.
> + * @get_timeleft:The routine that gets the time left before a reset.
> * @ref: The ref operation for dyn. allocated watchdog_device structs
> * @unref: The unref operation for dyn. allocated watchdog_device structs
> * @ioctl: The routines that handles extra ioctl calls.
> @@ -33,7 +33,7 @@ struct watchdog_device;
> * The watchdog_ops structure contains a list of low-level operations
> * that control a watchdog device. It also contains the module that owns
> * these operations. The start and stop function are mandatory, all other
> - * functions are optonal.
> + * functions are optional.
> */
> struct watchdog_ops {
> struct module *owner;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-03 14:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-03 8:00 [PATCH 1/2] watchdog: include: fix some typos Wolfram Sang
2015-11-03 8:00 ` [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc Wolfram Sang
2015-11-03 14:48 ` Guenter Roeck
2015-11-03 14:47 ` [PATCH 1/2] watchdog: include: fix some typos Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).