diff options
author | Liao Yuanhong <liaoyuanhong@vivo.com> | 2025-08-13 17:48:55 +0800 |
---|---|---|
committer | Tzung-Bi Shih <tzungbi@kernel.org> | 2025-08-13 09:57:21 +0000 |
commit | f7439a723e5aa5b35c76355e1b9b2cd1108f656e (patch) | |
tree | b1483c87b8899784ab349d04c08819e30e59b6ff | |
parent | 8abbbbb588f1f1bf95ae56c1531a17520ce487e2 (diff) |
platform/chrome: wilco_ec: Remove redundant semicolons
Remove unnecessary semicolons.
Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com>
Link: https://lore.kernel.org/r/20250813094858.557742-1-liaoyuanhong@vivo.com
Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
-rw-r--r-- | drivers/platform/chrome/wilco_ec/telemetry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/wilco_ec/telemetry.c b/drivers/platform/chrome/wilco_ec/telemetry.c index 7d8ae2cbf72f..b18043e31ae4 100644 --- a/drivers/platform/chrome/wilco_ec/telemetry.c +++ b/drivers/platform/chrome/wilco_ec/telemetry.c @@ -388,7 +388,7 @@ static int telem_device_probe(struct platform_device *pdev) dev_set_name(&dev_data->dev, TELEM_DEV_NAME_FMT, minor); device_initialize(&dev_data->dev); - /* Initialize the character device and add it to userspace */; + /* Initialize the character device and add it to userspace */ cdev_init(&dev_data->cdev, &telem_fops); error = cdev_device_add(&dev_data->cdev, &dev_data->dev); if (error) { |