Transform 'u8' to 'uint8_t'
- Replace '\([^_]\)u8' with '\1uint8_t'. - Replace '^u8' with 'uint8_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2276 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -34,11 +34,11 @@
|
||||
|
||||
#include <sys/mman.h>
|
||||
|
||||
static u8 output_value = 0x0;
|
||||
static uint8_t output_value = 0x0;
|
||||
static int dev_mem_fd;
|
||||
static void *gpio_controller;
|
||||
static volatile u8 *gpio_data_register;
|
||||
static volatile u8 *gpio_data_direction_register;
|
||||
static volatile uint8_t *gpio_data_register;
|
||||
static volatile uint8_t *gpio_data_direction_register;
|
||||
|
||||
/* low level command set
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user