diff mbox series

[-next] coresight: stm: Remove unneeded semicolon

Message ID 20240618011319.97542-1-yang.lee@linux.alibaba.com (mailing list archive)
State New, archived
Headers show
Series [-next] coresight: stm: Remove unneeded semicolon | expand

Commit Message

Yang Li June 18, 2024, 1:13 a.m. UTC
./drivers/hwtracing/coresight/coresight-priv.h:231:2-3: Unneeded
semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9345
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/hwtracing/coresight/coresight-priv.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/hwtracing/coresight/coresight-priv.h b/drivers/hwtracing/coresight/coresight-priv.h
index fc3617642b01..15fee93d7696 100644
--- a/drivers/hwtracing/coresight/coresight-priv.h
+++ b/drivers/hwtracing/coresight/coresight-priv.h
@@ -228,7 +228,7 @@  static inline void *coresight_get_uci_data_from_amba(const struct amba_id *table
 		if ((pid & table->mask) == table->id)
 			return coresight_get_uci_data(table);
 		table++;
-	};
+	}
 	return NULL;
 }