Merge pull request #187 from munix9/fix-label-at-end-of-compound-statement

Fix "error: label at end of compound statement"
This commit is contained in:
tuxedoxt 2023-08-10 12:05:35 +02:00 committed by GitHub
commit aa56acd15c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -418,6 +418,7 @@ int clevo_leds_suspend(struct platform_device *dev)
clevo_evaluate_set_keyboard_status(0);
break;
default:
break;
}
return 0;
}
@ -431,6 +432,7 @@ int clevo_leds_resume(struct platform_device *dev)
clevo_evaluate_set_keyboard_status(1);
break;
default:
break;
}
return 0;
}