diff options
author | Hans de Goede <hdegoede@redhat.com> | 2021-05-19 16:56:18 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-06-16 18:47:49 +0300 |
commit | 7dc4a18d017ca26abd1cea197e486fb3e5cd7632 (patch) | |
tree | 1a1d942a66cca3ce5a823a98141056e15339fbcb /drivers/platform/x86/toshiba_haps.c | |
parent | 1351f1d1e2f7d91d0b1963f7b5bf829a4982c778 (diff) | |
download | linux-7dc4a18d017ca26abd1cea197e486fb3e5cd7632.tar.xz |
platform/x86: toshiba_haps: Fix missing newline in pr_debug call in toshiba_haps_notify
The pr_debug() call in toshiba_haps_notify() is missing a newline at the
end of the string, add this.
BugLink: https://bugs.debian.org/799193
Reported-by: Salvatore Bonaccorso <carnil@debian.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20210519135618.139701-1-hdegoede@redhat.com
Diffstat (limited to 'drivers/platform/x86/toshiba_haps.c')
-rw-r--r-- | drivers/platform/x86/toshiba_haps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/toshiba_haps.c b/drivers/platform/x86/toshiba_haps.c index b237bd6b1ee5..49e84095bb01 100644 --- a/drivers/platform/x86/toshiba_haps.c +++ b/drivers/platform/x86/toshiba_haps.c @@ -131,7 +131,7 @@ static const struct attribute_group haps_attr_group = { */ static void toshiba_haps_notify(struct acpi_device *device, u32 event) { - pr_debug("Received event: 0x%x", event); + pr_debug("Received event: 0x%x\n", event); acpi_bus_generate_netlink_event(device->pnp.device_class, dev_name(&device->dev), |