staging: nvec: remove extra space in enum declaration

Remove extra space in 'enum nvec_msg_category  {' declaration.

Signed-off-by: Dorian Catric <dorian.catric@gmail.com>
Link: https://patch.msgid.link/20260603172719.398-2-dorian.catric@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dorian Catric
2026-06-03 19:27:19 +02:00
committed by Greg Kroah-Hartman
parent e58a7f2ed6
commit d1760cc87c

View File

@@ -57,7 +57,7 @@
* @NVEC_MSG_RX: The message is an incoming message (from EC)
* @NVEC_MSG_TX: The message is an outgoing message (to EC)
*/
enum nvec_msg_category {
enum nvec_msg_category {
NVEC_MSG_RX,
NVEC_MSG_TX,
};