All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
@ 2017-07-21 18:44 Sumeet Pawnikar
  2017-07-26 18:59 ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Sumeet Pawnikar @ 2017-07-21 18:44 UTC (permalink / raw)
  To: rjw, lenb; +Cc: linux-acpi, sumeet.r.pawnikar

This patch fix the typos in function header of
acpi_lpat_raw_to_temp and acpi_lpat_temp_to_raw.

Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
---
 drivers/acpi/acpi_lpat.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/acpi/acpi_lpat.c b/drivers/acpi/acpi_lpat.c
index c1c4877..2cd9f73 100644
--- a/drivers/acpi/acpi_lpat.c
+++ b/drivers/acpi/acpi_lpat.c
@@ -25,7 +25,7 @@
  * @raw: the raw value, used as a key to get the temerature from the
  *       above mapping table
  *
- * A positive converted temperarure value will be returned on success,
+ * A positive converted temperature value will be returned on success,
  * a negative errno will be returned in error cases.
  */
 int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table,
@@ -55,11 +55,11 @@ int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table,
  * acpi_lpat_temp_to_raw(): Return raw value from temperature through
  * LPAT conversion table
  *
- * @lpat: the temperature_raw mapping table
+ * @lpat_table: the temperature_raw mapping table
  * @temp: the temperature, used as a key to get the raw value from the
  *        above mapping table
  *
- * A positive converted temperature value will be returned on success,
+ * The raw value will be returned on success,
  * a negative errno will be returned in error cases.
  */
 int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table,
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
  2017-07-21 18:44 [PATCH] ACPIi / lpat: Fix typos and kernel-doc style Sumeet Pawnikar
@ 2017-07-26 18:59 ` Rafael J. Wysocki
  2017-07-27  6:10   ` Pawnikar, Sumeet R
  0 siblings, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2017-07-26 18:59 UTC (permalink / raw)
  To: Sumeet Pawnikar; +Cc: lenb, linux-acpi

On Saturday, July 22, 2017 12:14:42 AM Sumeet Pawnikar wrote:
> This patch fix the typos in function header of
> acpi_lpat_raw_to_temp and acpi_lpat_temp_to_raw.
> 
> Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
> ---
>  drivers/acpi/acpi_lpat.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/acpi/acpi_lpat.c b/drivers/acpi/acpi_lpat.c
> index c1c4877..2cd9f73 100644
> --- a/drivers/acpi/acpi_lpat.c
> +++ b/drivers/acpi/acpi_lpat.c
> @@ -25,7 +25,7 @@
>   * @raw: the raw value, used as a key to get the temerature from the
>   *       above mapping table
>   *
> - * A positive converted temperarure value will be returned on success,
> + * A positive converted temperature value will be returned on success,
>   * a negative errno will be returned in error cases.
>   */
>  int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table,
> @@ -55,11 +55,11 @@ int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table,
>   * acpi_lpat_temp_to_raw(): Return raw value from temperature through
>   * LPAT conversion table
>   *
> - * @lpat: the temperature_raw mapping table
> + * @lpat_table: the temperature_raw mapping table
>   * @temp: the temperature, used as a key to get the raw value from the
>   *        above mapping table
>   *
> - * A positive converted temperature value will be returned on success,
> + * The raw value will be returned on success,
>   * a negative errno will be returned in error cases.
>   */
>  int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table,
> 

Applied, thanks!


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
  2017-07-26 18:59 ` Rafael J. Wysocki
@ 2017-07-27  6:10   ` Pawnikar, Sumeet R
  2017-07-27 23:47     ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Pawnikar, Sumeet R @ 2017-07-27  6:10 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: lenb, linux-acpi


>-----Original Message-----
>From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]
>Sent: Thursday, July 27, 2017 12:29 AM
>To: Pawnikar, Sumeet R <sumeet.r.pawnikar@intel.com>
>Cc: lenb@kernel.org; linux-acpi@vger.kernel.org
>Subject: Re: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style

Just now, I observed that the commit header has extra "i" after ACPI as mentioned in below line. My bad :(
Do you want me to resend this with correcting it ?

>
>On Saturday, July 22, 2017 12:14:42 AM Sumeet Pawnikar wrote:
>> This patch fix the typos in function header of acpi_lpat_raw_to_temp
>> and acpi_lpat_temp_to_raw.
>>
>> Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
>> ---
>>  drivers/acpi/acpi_lpat.c |    6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/acpi/acpi_lpat.c b/drivers/acpi/acpi_lpat.c index
>> c1c4877..2cd9f73 100644
>> --- a/drivers/acpi/acpi_lpat.c
>> +++ b/drivers/acpi/acpi_lpat.c
>> @@ -25,7 +25,7 @@
>>   * @raw: the raw value, used as a key to get the temerature from the
>>   *       above mapping table
>>   *
>> - * A positive converted temperarure value will be returned on
>> success,
>> + * A positive converted temperature value will be returned on
>> + success,
>>   * a negative errno will be returned in error cases.
>>   */
>>  int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table
>> *lpat_table, @@ -55,11 +55,11 @@ int acpi_lpat_raw_to_temp(struct
>acpi_lpat_conversion_table *lpat_table,
>>   * acpi_lpat_temp_to_raw(): Return raw value from temperature through
>>   * LPAT conversion table
>>   *
>> - * @lpat: the temperature_raw mapping table
>> + * @lpat_table: the temperature_raw mapping table
>>   * @temp: the temperature, used as a key to get the raw value from the
>>   *        above mapping table
>>   *
>> - * A positive converted temperature value will be returned on
>> success,
>> + * The raw value will be returned on success,
>>   * a negative errno will be returned in error cases.
>>   */
>>  int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table
>> *lpat_table,
>>
>
>Applied, thanks!


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
  2017-07-27  6:10   ` Pawnikar, Sumeet R
@ 2017-07-27 23:47     ` Rafael J. Wysocki
  2017-07-28  4:40       ` Pawnikar, Sumeet R
  0 siblings, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2017-07-27 23:47 UTC (permalink / raw)
  To: Pawnikar, Sumeet R; +Cc: lenb, linux-acpi

On Thursday, July 27, 2017 06:10:03 AM Pawnikar, Sumeet R wrote:
> 
> >-----Original Message-----
> >From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]
> >Sent: Thursday, July 27, 2017 12:29 AM
> >To: Pawnikar, Sumeet R <sumeet.r.pawnikar@intel.com>
> >Cc: lenb@kernel.org; linux-acpi@vger.kernel.org
> >Subject: Re: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
> 
> Just now, I observed that the commit header has extra "i" after ACPI as mentioned in below line. My bad :(
> Do you want me to resend this with correcting it ?

No need.

I think it is OK in linux-next, isn't it?

Thanks,
Rafael


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
  2017-07-27 23:47     ` Rafael J. Wysocki
@ 2017-07-28  4:40       ` Pawnikar, Sumeet R
  0 siblings, 0 replies; 5+ messages in thread
From: Pawnikar, Sumeet R @ 2017-07-28  4:40 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: lenb, linux-acpi


>> >-----Original Message-----
>> >From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]
>> >Sent: Thursday, July 27, 2017 12:29 AM
>> >To: Pawnikar, Sumeet R <sumeet.r.pawnikar@intel.com>
>> >Cc: lenb@kernel.org; linux-acpi@vger.kernel.org
>> >Subject: Re: [PATCH] ACPIi / lpat: Fix typos and kernel-doc style
>>
>> Just now, I observed that the commit header has extra "i" after ACPI
>> as mentioned in below line. My bad :( Do you want me to resend this with
>correcting it ?
>
>No need.
>
>I think it is OK in linux-next, isn't it?

Yes, I feel this is OK. Thank you.
Sumeet.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-07-28  4:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-21 18:44 [PATCH] ACPIi / lpat: Fix typos and kernel-doc style Sumeet Pawnikar
2017-07-26 18:59 ` Rafael J. Wysocki
2017-07-27  6:10   ` Pawnikar, Sumeet R
2017-07-27 23:47     ` Rafael J. Wysocki
2017-07-28  4:40       ` Pawnikar, Sumeet R

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.