From: Felix Fietkau Date: Sat, 29 Aug 2009 16:46:04 +0000 (+0200) Subject: ucimap: cleanup OPTMAP_OPTION macro, rename to UCIMAP_OPTION X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=commitdiff_plain;h=75888e2645fc300311972b7c4430b0b817f822b9 ucimap: cleanup OPTMAP_OPTION macro, rename to UCIMAP_OPTION --- diff --git a/ucimap-example.c b/ucimap-example.c index 6a91f0a..1c0ed38 100644 --- a/ucimap-example.c +++ b/ucimap-example.c @@ -86,12 +86,37 @@ static struct uci_sectmap network_interface; static struct uci_sectmap network_alias; static struct uci_optmap network_interface_options[] = { - OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, proto, .data.s.maxlen = 32), - OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, ifname), - OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, ipaddr), - OPTMAP_OPTION(UCIMAP_BOOL, struct uci_network, enabled), - OPTMAP_OPTION(UCIMAP_INT, struct uci_network, test), - OPTMAP_OPTION(UCIMAP_LIST | UCIMAP_SECTION, struct uci_network, aliases, .data.sm = &network_alias), + { + UCIMAP_OPTION(struct uci_network, proto), + .type = UCIMAP_STRING, + .name = "proto", + .data.s.maxlen = 32, + }, + { + UCIMAP_OPTION(struct uci_network, ifname), + .type = UCIMAP_STRING, + .name = "ifname" + }, + { + UCIMAP_OPTION(struct uci_network, ipaddr), + .type = UCIMAP_STRING, + .name = "ipaddr", + }, + { + UCIMAP_OPTION(struct uci_network, enabled), + .type = UCIMAP_BOOL, + .name = "enabled", + }, + { + UCIMAP_OPTION(struct uci_network, test), + .type = UCIMAP_INT, + .name = "test" + }, + { + UCIMAP_OPTION(struct uci_network, aliases), + .type = UCIMAP_LIST | UCIMAP_SECTION, + .data.sm = &network_alias + } }; static struct uci_sectmap network_interface = { @@ -104,7 +129,11 @@ static struct uci_sectmap network_interface = { }; static struct uci_optmap network_alias_options[] = { - OPTMAP_OPTION(UCIMAP_SECTION, struct uci_alias, interface, .data.sm = &network_interface), + { + UCIMAP_OPTION(struct uci_alias, interface), + .type = UCIMAP_SECTION, + .data.sm = &network_interface + } }; static struct uci_sectmap network_alias = { diff --git a/ucimap.h b/ucimap.h index 9409500..adb7004 100644 --- a/ucimap.h +++ b/ucimap.h @@ -32,13 +32,9 @@ #define TEST_BIT(_name, _bit) \ (_name[(_bit) / 8] & (1 << ((_bit) % 8))) -#define OPTMAP_OPTION(_maptype, _type, _field, ...) \ - { \ - .type = _maptype, \ - .name = #_field, \ - .offset = offsetof(_type, _field), \ - __VA_ARGS__ \ - } +#define UCIMAP_OPTION(_type, _field) \ + .name = #_field, \ + .offset = offsetof(_type, _field) struct uci_sectmap; struct uci_optmap;