Commit ba3979bd authored by Christian Lütke-Stetzkamp's avatar Christian Lütke-Stetzkamp Committed by Greg Kroah-Hartman

staging: mt7621-mmc: Remove global initialise to 0

Fix checkpatch error: GLOBAL_INITIALISERS
Signed-off-by: default avatarChristian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 178c153d
...@@ -76,9 +76,9 @@ enum msdc_mode drv_mode[4] = { ...@@ -76,9 +76,9 @@ enum msdc_mode drv_mode[4] = {
#if defined(MT6575_SD_DEBUG) #if defined(MT6575_SD_DEBUG)
/* for driver profile */ /* for driver profile */
#define TICKS_ONE_MS (13000) #define TICKS_ONE_MS (13000)
u32 gpt_enable = 0; u32 gpt_enable;
u32 sdio_pro_enable = 0; /* make sure gpt is enabled */ u32 sdio_pro_enable; /* make sure gpt is enabled */
u32 sdio_pro_time = 0; /* no more than 30s */ u32 sdio_pro_time; /* no more than 30s */
struct sdio_profile sdio_perfomance = {0}; struct sdio_profile sdio_perfomance = {0};
#if 0 /* --- chhung */ #if 0 /* --- chhung */
......
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