diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-09 01:28:30 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-09 01:28:30 +0000 |
commit | fa74e803236f063b800f58480e3a1dbdf2344957 (patch) | |
tree | 68b2e693e5291b5a45a94b93ff57ac2be2e5227c /os/hal/ports/AVR | |
parent | cfdaaa4edd70701d10f8077965a414cd81e1c412 (diff) | |
download | ChibiOS-fa74e803236f063b800f58480e3a1dbdf2344957.tar.gz ChibiOS-fa74e803236f063b800f58480e3a1dbdf2344957.tar.bz2 ChibiOS-fa74e803236f063b800f58480e3a1dbdf2344957.zip |
Fixed a warning
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7024 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/AVR')
-rw-r--r-- | os/hal/ports/AVR/pal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/AVR/pal_lld.h b/os/hal/ports/AVR/pal_lld.h index c7d100d8a..ff6705f4a 100644 --- a/os/hal/ports/AVR/pal_lld.h +++ b/os/hal/ports/AVR/pal_lld.h @@ -130,7 +130,7 @@ typedef uint8_t iomode_t; * any assumption about it, use the provided macros when populating
* variables of this type.
*/
-typedef avr_gpio_registers_t *ioportid_t;
+typedef volatile avr_gpio_registers_t * ioportid_t;
/*===========================================================================*/
/* I/O Ports Identifiers. */
|