Module Name: src Committed By: hkenken Date: Fri Mar 28 11:52:51 UTC 2014
Modified Files: src/sys/dev/spi: spiflash.c Log Message: Fix printf formating in DPRINTF. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/spi/spiflash.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/spi/spiflash.c diff -u src/sys/dev/spi/spiflash.c:1.12 src/sys/dev/spi/spiflash.c:1.13 --- src/sys/dev/spi/spiflash.c:1.12 Tue Jan 28 19:26:32 2014 +++ src/sys/dev/spi/spiflash.c Fri Mar 28 11:52:51 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: spiflash.c,v 1.12 2014/01/28 19:26:32 martin Exp $ */ +/* $NetBSD: spiflash.c,v 1.13 2014/03/28 11:52:51 hkenken Exp $ */ /*- * Copyright (c) 2006 Urbana-Champaign Independent Media Center. @@ -42,7 +42,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: spiflash.c,v 1.12 2014/01/28 19:26:32 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: spiflash.c,v 1.13 2014/03/28 11:52:51 hkenken Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -457,7 +457,7 @@ spiflash_process_write(spiflash_handle_t * do the erase, if we need to. */ if (neederase) { - DPRINTF(("erasing from %x - %x\n", base, base + len)); + DPRINTF(("erasing from %zx - %zx\n", base, base + len)); if ((err = sc->sc_erase(sc, base, len)) != 0) { spiflash_process_done(sc, err); return; @@ -467,8 +467,7 @@ spiflash_process_write(spiflash_handle_t /* * now write our save area, and finish up. */ - DPRINTF(("flashing %d bytes to %x from %x\n", len, - base, (unsigned)save)); + DPRINTF(("flashing %d bytes to %zx from %p\n", len, base, save)); err = sc->sc_write(sc, base, len, save); spiflash_process_done(sc, err); }