aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSumeet Pawnikar <sumeet.r.pawnikar@intel.com>2017-07-21 14:44:42 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-07-24 16:52:00 -0400
commita06f29b2866ce4418154d6cb955e35899c554066 (patch)
tree458dc6dff65cfbec1642930f8e4b715241108662
parentb8a15eba99872206fa7b6c75e59e8272d1b4cfbb (diff)
ACPI / lpat: Fix typos in comments and kerneldoc style
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> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/acpi_lpat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpi_lpat.c b/drivers/acpi/acpi_lpat.c
index c1c4877ca96c..2cd9f738812b 100644
--- a/drivers/acpi/acpi_lpat.c
+++ b/drivers/acpi/acpi_lpat.c
@@ -25,7 +25,7 @@
25 * @raw: the raw value, used as a key to get the temerature from the 25 * @raw: the raw value, used as a key to get the temerature from the
26 * above mapping table 26 * above mapping table
27 * 27 *
28 * A positive converted temperarure value will be returned on success, 28 * A positive converted temperature value will be returned on success,
29 * a negative errno will be returned in error cases. 29 * a negative errno will be returned in error cases.
30 */ 30 */
31int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table, 31int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table,
@@ -55,11 +55,11 @@ EXPORT_SYMBOL_GPL(acpi_lpat_raw_to_temp);
55 * acpi_lpat_temp_to_raw(): Return raw value from temperature through 55 * acpi_lpat_temp_to_raw(): Return raw value from temperature through
56 * LPAT conversion table 56 * LPAT conversion table
57 * 57 *
58 * @lpat: the temperature_raw mapping table 58 * @lpat_table: the temperature_raw mapping table
59 * @temp: the temperature, used as a key to get the raw value from the 59 * @temp: the temperature, used as a key to get the raw value from the
60 * above mapping table 60 * above mapping table
61 * 61 *
62 * A positive converted temperature value will be returned on success, 62 * The raw value will be returned on success,
63 * a negative errno will be returned in error cases. 63 * a negative errno will be returned in error cases.
64 */ 64 */
65int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table, 65int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table,