diff options
author | imp <imp@FreeBSD.org> | 2012-06-22 06:44:22 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2012-06-22 06:44:22 +0000 |
commit | 860e30dae9add1199b159f743b020e0d9c533c5f (patch) | |
tree | a41dbaa8e43122aa72f752d4d32926c24f3410ad | |
parent | 4109c3e1ac5d4621c6f3fb66d64903573a353eca (diff) | |
download | FreeBSD-src-860e30dae9add1199b159f743b020e0d9c533c5f.zip FreeBSD-src-860e30dae9add1199b159f743b020e0d9c533c5f.tar.gz |
Fix a stray debug that I committed accidentally years ago...
-rw-r--r-- | sys/arm/at91/at91_twi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/arm/at91/at91_twi.c b/sys/arm/at91/at91_twi.c index a76c313..523f23e 100644 --- a/sys/arm/at91/at91_twi.c +++ b/sys/arm/at91/at91_twi.c @@ -284,7 +284,6 @@ at91_twi_rst_card(device_t dev, u_char speed, u_char addr, u_char *oldaddr) WR4(sc, TWI_CR, TWI_CR_SWRST); WR4(sc, TWI_CR, TWI_CR_MSEN | TWI_CR_SVDIS); WR4(sc, TWI_CWGR, sc->cwgr); - printf("setting cwgr to %#x\n", sc->cwgr); AT91_TWI_UNLOCK(sc); return 0; |