Forráskód Böngészése

cnss2: Add usage for debug interfaces

The below debug interface usages are added:
1. assert_host_sol
2. deassert_host_sol
3. dev_check
4. dev_enable

Change-Id: I42aaca7f90239d67bb0c9317b5651751cec5f236
CRs-Fixed: 3758776
Prateek Patil 1 éve
szülő
commit
d346d95866
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      cnss2/debug.c

+ 4 - 0
cnss2/debug.c

@@ -326,6 +326,10 @@ static int cnss_dev_boot_debug_show(struct seq_file *s, void *data)
 	seq_puts(s, "\npdc_update usage:");
 	seq_puts(s, "1. echo pdc_update {class: wlan_pdc ss: <pdc_ss>, res: <vreg>.<mode>, <seq>: <val>} > <debugfs_path>/cnss/dev_boot\n");
 	seq_puts(s, "2. echo pdc_update {class: wlan_pdc ss: <pdc_ss>, res: pdc, enable: <val>} > <debugfs_path>/cnss/dev_boot\n");
+	seq_puts(s, "assert_host_sol: Assert host sol\n");
+	seq_puts(s, "deassert_host_sol: Deassert host sol\n");
+	seq_puts(s, "dev_check: Check whether HW is disabled or not\n");
+	seq_puts(s, "dev_enable: Enable HW\n");
 
 	return 0;
 }