diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-18 20:02:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-18 20:02:26 +0000 |
commit | e188cb97fe24e7090a3104f6d3e5589e16e97215 (patch) | |
tree | 11a1557c441b9287eb5e80dbf85d5c68f946eaa1 /sys/arch | |
parent | a90403265684a6d9f1dd328d59cc29d76b0122de (diff) |
Obvious typo in diag message
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/beagle/dev/prcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/beagle/dev/prcm.c b/sys/arch/beagle/dev/prcm.c index 6fb56f36487..622aad93dd1 100644 --- a/sys/arch/beagle/dev/prcm.c +++ b/sys/arch/beagle/dev/prcm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: prcm.c,v 1.5 2011/03/14 15:16:46 jasper Exp $ */ +/* $OpenBSD: prcm.c,v 1.6 2011/09/18 20:02:25 miod Exp $ */ /* * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org> * @@ -349,7 +349,7 @@ prcm_setup_dpll5(void) while ((val = bus_space_read_4(prcm_iot, prcm_ioh, CM_IDLEST_CKGEN) & 0x01) == 0x00) { #ifdef DIAGNOSTIC - printf("CM_IDLEST_PLL = 0x&08x\n", val); + printf("CM_IDLEST_PLL = 0x%08x\n", val); #endif } |