diff options
author | imp <imp@FreeBSD.org> | 2012-05-02 09:19:42 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2012-05-02 09:19:42 +0000 |
commit | cecdf5f9b69e43f2e9e065b95a0b10615721b79a (patch) | |
tree | 95bab13eb2fc9c049bb08ab865efe7cf1e8eb75f /sys/arm/at91 | |
parent | 3878e8fba6815bdd40bbc51a7af8535307563fca (diff) | |
download | FreeBSD-src-cecdf5f9b69e43f2e9e065b95a0b10615721b79a.zip FreeBSD-src-cecdf5f9b69e43f2e9e065b95a0b10615721b79a.tar.gz |
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
Diffstat (limited to 'sys/arm/at91')
-rw-r--r-- | sys/arm/at91/at91sam9g20reg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/at91/at91sam9g20reg.h b/sys/arm/at91/at91sam9g20reg.h index 71683e9..41c328a 100644 --- a/sys/arm/at91/at91sam9g20reg.h +++ b/sys/arm/at91/at91sam9g20reg.h @@ -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 |