Date: Wed, 2 May 2012 09:19:43 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r234923 - head/sys/arm/at91 Message-ID: <201205020919.q429Jhbm075611@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205020919.q429Jhbm075611>