From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Mon, 5 Sep 2016 17:28:45 +0200 Adjust jump labels according to the current Linux coding style convention. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/acpi_video.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/acpi/acpi_video.c b/drivers/acpi/acpi_video.c index 5f1ef6e..5566f68 100644 --- a/drivers/acpi/acpi_video.c +++ b/drivers/acpi/acpi_video.c @@ -888,11 +888,11 @@ acpi_video_init_brightness(struct acpi_video_device *device) result = acpi_video_device_lcd_get_level_current(device, &level_old, true); if (result) - goto out_free_levels; + goto free_levels; result = acpi_video_bqc_quirk(device, max_level, level_old); if (result) - goto out_free_levels; + goto free_levels; /* * cap._BQC may get cleared due to _BQC is found to be broken * in acpi_video_bqc_quirk, so check again here. @@ -912,17 +912,15 @@ acpi_video_init_brightness(struct acpi_video_device *device) break; if (i == br->count || !level) level = max_level; - -set_level: + set_level: result = acpi_video_device_lcd_set_level(device, level); if (result) - goto out_free_levels; + goto free_levels; ACPI_DEBUG_PRINT((ACPI_DB_INFO, "found %d brightness levels\n", br->count - 2)); return 0; - -out_free_levels: + free_levels: kfree(br->levels); kfree(br); device->brightness = NULL; -- 2.10.0 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html