Browse Source

cnss2: Fix compilation failure due to u64 print format

Use %llx instead of %lx for u64 print.

Change-Id: Icf6a310a128264c09db8567f53372590cae0e81f
CRs-Fixed: 3754364
Lin Bai 1 year ago
parent
commit
ab727e3454
1 changed files with 2 additions and 1 deletions
  1. 2 1
      cnss2/debug.c

+ 2 - 1
cnss2/debug.c

@@ -89,7 +89,8 @@ static int cnss_stats_show_state(struct seq_file *s,
 	int skip = 0;
 	unsigned long state;
 
-	seq_printf(s, "\nSerial Number: 0x%lx", cnss_get_serial_id(plat_priv));
+	seq_printf(s, "\nSerial Number: 0x%llx",
+		   cnss_get_serial_id(plat_priv));
 	seq_printf(s, "\nState: 0x%lx(", plat_priv->driver_state);
 	for (i = 0, state = plat_priv->driver_state; state != 0;
 	     state >>= 1, i++) {