From: Rafael J. Wysocki Date: Fri, 8 May 2026 17:41:47 +0000 (+0200) Subject: platform/x86: xo15-ebook: Fix formatting of labels X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=826264e0b02dc856979bdd230d96969e93fe41ed;p=thirdparty%2Fkernel%2Flinux.git platform/x86: xo15-ebook: Fix formatting of labels Fix formatting of two labels in ebook_switch_add() to make that function follow the current kernel coding style more closely. No functional impact. Signed-off-by: Rafael J. Wysocki Link: https://patch.msgid.link/14016199.uLZWGnKmhe@rafael.j.wysocki Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen --- diff --git a/drivers/platform/x86/xo15-ebook.c b/drivers/platform/x86/xo15-ebook.c index 1568169b78727..616f4bb3461ae 100644 --- a/drivers/platform/x86/xo15-ebook.c +++ b/drivers/platform/x86/xo15-ebook.c @@ -134,9 +134,9 @@ static int ebook_switch_add(struct acpi_device *device) return 0; - err_free_input: +err_free_input: input_free_device(input); - err_free_button: +err_free_button: kfree(button); return error; }