aboutsummaryrefslogtreecommitdiffstats
path: root/drv.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv.c')
-rw-r--r--drv.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drv.c b/drv.c
index 1682e3d..547b464 100644
--- a/drv.c
+++ b/drv.c
@@ -215,6 +215,10 @@ DRIVER *Driver[] = {
static DRIVER *Drv = NULL;
+/* maybe we need this */
+extern int drv_SD_list_verbose(void);
+
+
int drv_list(void)
{
int i;
@@ -227,6 +231,12 @@ int drv_list(void)
Driver[i]->list();
}
printf("\n");
+
+#ifdef WITH_SERDISPLIB
+ printf("\n");
+ drv_SD_list_verbose();
+#endif
+
return 0;
}