From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from bh-25.webhostbox.net ([208.91.199.152]:45581 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751504AbbKCOsX (ORCPT ); Tue, 3 Nov 2015 09:48:23 -0500 Subject: Re: [PATCH 2/2] watchdog: include: add units for timeout values in kerneldoc To: Wolfram Sang , linux-watchdog@vger.kernel.org References: <1446537616-3452-1-git-send-email-wsa@the-dreams.de> <1446537616-3452-2-git-send-email-wsa@the-dreams.de> Cc: Wim Van Sebroeck , linux-sh@vger.kernel.org From: Guenter Roeck Message-ID: <5638C935.60601@roeck-us.net> Date: Tue, 3 Nov 2015 06:48:21 -0800 MIME-Version: 1.0 In-Reply-To: <1446537616-3452-2-git-send-email-wsa@the-dreams.de> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-watchdog-owner@vger.kernel.org List-Id: linux-watchdog@vger.kernel.org On 11/03/2015 12:00 AM, Wolfram Sang wrote: > From: Wolfram Sang > > Signed-off-by: Wolfram Sang Reviewed-by: Guenter Roeck > --- > 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. >