tmio_mmc: fix compilation with debug enabled

Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Acked-by: Ian Molton <spyro@f2s.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>

authored by Dmitry Baryshkov and committed by Pierre Ossman fe246eb0 bef69ea0

+2 -2
+2 -2
drivers/mmc/host/tmio_mmc.h
··· 159 159 #define STATUS_TO_TEXT(a) \ 160 160 do { \ 161 161 if (status & TMIO_STAT_##a) \ 162 - printf(#a); \ 162 + printk(#a); \ 163 163 } while (0) 164 164 165 - void debug_status(u32 status) 165 + void pr_debug_status(u32 status) 166 166 { 167 167 printk(KERN_DEBUG "status: %08x = ", status); 168 168 STATUS_TO_TEXT(CARD_REMOVE);