svn commit: r234923 - head/sys/arm/at91

Warner Losh imp at FreeBSD.org
Wed May 2 09:19:43 UTC 2012


Author: imp
Date: Wed May  2 09:19:42 2012
New Revision: 234923
URL: http://svn.freebsd.org/changeset/base/234923

Log:
  The PIT is really 16 bytes long (0x10) not 10 bytes long.  Doesn't
  matter much, since these defines are unused...
  
  Obtained from:	AT91SAM9G20 datasheet

Modified:
  head/sys/arm/at91/at91sam9g20reg.h

Modified: head/sys/arm/at91/at91sam9g20reg.h
==============================================================================
--- head/sys/arm/at91/at91sam9g20reg.h	Wed May  2 08:38:43 2012	(r234922)
+++ head/sys/arm/at91/at91sam9g20reg.h	Wed May  2 09:19:42 2012	(r234923)
@@ -238,7 +238,7 @@
 #define AT91SAM9G20_WDT_SIZE	0x10
 
 #define AT91SAM9G20_PIT_BASE	0xffffd30
-#define AT91SAM9G20_PIT_SIZE	10
+#define AT91SAM9G20_PIT_SIZE	0x10
 
 #define AT91SAM9G20_SMC_BASE	0xfffec00
 #define AT91SAM9G20_SMC_SIZE	0x200


More information about the svn-src-head mailing list