Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Thermal/int340x: Fix few typos and kernel-doc style

This patch fix the few typos in function header of
acpi_parse_trt. Also, fix the typo in kernel debug
message for acpi_parse_art.

Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>

authored by

Sumeet Pawnikar and committed by
Zhang Rui
86326031 c0bc126f

+3 -3
+3 -3
drivers/thermal/int340x_thermal/acpi_thermal_rel.c
··· 62 62 * acpi_parse_trt - Thermal Relationship Table _TRT for passive cooling 63 63 * 64 64 * @handle: ACPI handle of the device contains _TRT 65 - * @art_count: the number of valid entries resulted from parsing _TRT 66 - * @artp: pointer to pointer of array of art entries in parsing result 65 + * @trt_count: the number of valid entries resulted from parsing _TRT 66 + * @trtp: pointer to pointer of array of _TRT entries in parsing result 67 67 * @create_dev: whether to create platform devices for target and source 68 68 * 69 69 */ ··· 208 208 if (art->target) { 209 209 result = acpi_bus_get_device(art->target, &adev); 210 210 if (result) 211 - pr_warn("Failed to get source ACPI device\n"); 211 + pr_warn("Failed to get target ACPI device\n"); 212 212 } 213 213 } 214 214