Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Mery <amery@geeks.cl>2012-05-06 23:28:46 +0400
committerAlejandro Mery <amery@geeks.cl>2012-05-06 23:28:46 +0400
commitfd16859d79f12f1e9920dff71d973bf0f822c4d5 (patch)
tree19476224701bd7cead14698b7ca5aa5816fe7fa6 /script.h
parent65059d05433de225f97431185c29db628c3231b0 (diff)
script: changed gpio data to int32_t
Diffstat (limited to 'script.h')
-rw-r--r--script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/script.h b/script.h
index 193d495..9ce60a9 100644
--- a/script.h
+++ b/script.h
@@ -72,7 +72,7 @@ struct script_gpio_entry {
struct script_entry entry;
unsigned port, port_num;
- unsigned data[4];
+ int32_t data[4];
};
/** create a new script tree */
@@ -104,6 +104,6 @@ struct script_string_entry *script_string_entry_new(struct script_section *secti
struct script_gpio_entry *script_gpio_entry_new(struct script_section *script,
const char *name,
unsigned port, unsigned num,
- unsigned data[4]);
+ int32_t data[4]);
#endif