Sat, 17 Nov 2012 22:15:23 +0000
wd2010: use LOGS when logging unformatted strings
src/wd2010.c | file | annotate | diff | revisions |
1.1 diff -r 36367ebd34e0 -r da3d10af0711 src/wd2010.c 1.2 --- a/src/wd2010.c Sat Nov 17 22:14:09 2012 +0000 1.3 +++ b/src/wd2010.c Sat Nov 17 22:15:23 2012 +0000 1.4 @@ -154,7 +154,7 @@ 1.5 return ctx->data[ctx->data_pos++]; 1.6 } else { 1.7 // empty buffer (this shouldn't happen) 1.8 - LOG("WD2010: attempt to read from empty data buffer"); 1.9 + LOGS("WD2010: attempt to read from empty data buffer"); 1.10 return 0xff; 1.11 } 1.12 } 1.13 @@ -185,7 +185,7 @@ 1.14 ctx->drq = false; 1.15 } 1.16 }else{ 1.17 - LOG("WD2010: attempt to write to data buffer without a write command in progress"); 1.18 + LOGS("WD2010: attempt to write to data buffer without a write command in progress"); 1.19 } 1.20 } 1.21