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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'thermal-6.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull thermal control fix from Rafael Wysocki:
"Fix a regression introduced inadvertently during the 6.3 cycle by a
commit making the Intel int340x thermal driver use sysfs_emit_at()
instead of scnprintf() (Srinivas Pandruvada)"

* tag 'thermal-6.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
thermal: intel: int340x: Add new line for UUID display

+2 -2
+2 -2
drivers/thermal/intel/int340x_thermal/int3400_thermal.c
··· 131 131 132 132 for (i = 0; i < INT3400_THERMAL_MAXIMUM_UUID; i++) { 133 133 if (priv->uuid_bitmap & (1 << i)) 134 - length += sysfs_emit_at(buf, length, int3400_thermal_uuids[i]); 134 + length += sysfs_emit_at(buf, length, "%s\n", int3400_thermal_uuids[i]); 135 135 } 136 136 137 137 return length; ··· 149 149 150 150 for (i = 0; i <= INT3400_THERMAL_CRITICAL; i++) { 151 151 if (priv->os_uuid_mask & BIT(i)) 152 - length += sysfs_emit_at(buf, length, int3400_thermal_uuids[i]); 152 + length += sysfs_emit_at(buf, length, "%s\n", int3400_thermal_uuids[i]); 153 153 } 154 154 155 155 if (length)