From e9b0d2fe7c14201ea9c978e06ed2fccdff55ac30 Mon Sep 17 00:00:00 2001 From: bg- Date: Fri, 1 Dec 2006 15:06:42 +0000 Subject: [PATCH] * Remove printfs. --- cpu/msp430/rom.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cpu/msp430/rom.c b/cpu/msp430/rom.c index 7add158c6..f9384e733 100644 --- a/cpu/msp430/rom.c +++ b/cpu/msp430/rom.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)$Id: rom.c,v 1.1 2006/06/17 22:41:21 adamdunkels Exp $ + * @(#)$Id: rom.c,v 1.2 2006/12/01 15:06:42 bg- Exp $ */ #include @@ -90,12 +90,10 @@ rom_erase(long nbytes, off_t offset) struct ictx c; if(nbytes % ROM_ERASE_UNIT_SIZE != 0) { - printf("rom_erase: bad size\n"); return -1; } if(offset % ROM_ERASE_UNIT_SIZE != 0) { - printf("rom_erase: bad offset\n"); return -1; }