summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/nvmem.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
commit2a517327a657007f3dbada9998db483792df8ef9 (patch)
tree87cf29eacbdd28523aed6a061492ab8c561251d7 /doc/bsp_howto/nvmem.t
parent2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2a517327a657007f3dbada9998db483792df8ef9.tar.bz2
2008-08-21 Joel Sherrill <joel.sherrill@OARcorp.com>
* bsp_howto/ata.t, bsp_howto/clock.t, bsp_howto/ide-ctrl.t, bsp_howto/nvmem.t, bsp_howto/shmsupp.t, user/datatypes.t, user/mp.t, user/userext.t: Eliminate all references to rtems_signedXX and rtems_unsignedXX.
Diffstat (limited to 'doc/bsp_howto/nvmem.t')
-rw-r--r--doc/bsp_howto/nvmem.t16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/bsp_howto/nvmem.t b/doc/bsp_howto/nvmem.t
index 2c1063b8c3..aca391409b 100644
--- a/doc/bsp_howto/nvmem.t
+++ b/doc/bsp_howto/nvmem.t
@@ -184,10 +184,10 @@ structure type:
@example
@group
typedef struct @{
- rtems_unsigned32 offset;
- void *buffer;
- rtems_unsigned32 length;
- rtems_unsigned32 status;
+ uint32_t offset;
+ void *buffer;
+ uint32_t length;
+ uint32_t status;
@} Non_volatile_memory_Driver_arguments;
@end group
@end example
@@ -211,10 +211,10 @@ the following structure type:
@example
@group
typedef struct @{
- rtems_unsigned32 offset;
- void *buffer;
- rtems_unsigned32 length;
- rtems_unsigned32 status;
+ uint32_t offset;
+ void *buffer;
+ uint32_t length;
+ uint32_t status;
@} Non_volatile_memory_Driver_arguments;
@end group
@end example