Commit d17f5ff7 authored by NeilBrown's avatar NeilBrown Committed by Greg Kroah-Hartman

staging: mt7621-mmc: fix compile warnging: cmd_buf

cmd_buf is only used when MT6575_SD_DEBUG is defined.
So only declare it in that case.
Signed-off-by: default avatarNeilBrown <neil@brown.name>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a6bf8820
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
#include "mt6575_sd.h" #include "mt6575_sd.h"
#include <linux/seq_file.h> #include <linux/seq_file.h>
static char cmd_buf[256];
/* for debug zone */ /* for debug zone */
unsigned int sd_debug_zone[4] = { unsigned int sd_debug_zone[4] = {
...@@ -62,6 +61,7 @@ unsigned int sd_debug_zone[4] = { ...@@ -62,6 +61,7 @@ unsigned int sd_debug_zone[4] = {
}; };
#if defined(MT6575_SD_DEBUG) #if defined(MT6575_SD_DEBUG)
static char cmd_buf[256];
/* for driver profile */ /* for driver profile */
#define TICKS_ONE_MS (13000) #define TICKS_ONE_MS (13000)
u32 gpt_enable; u32 gpt_enable;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment