summaryrefslogtreecommitdiff
path: root/fdtput.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-05-24 18:04:43 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2013-05-24 18:20:53 +1000
commitb9e80656f2de441826ed2ff1cd9c5d43b3ae43d3 (patch)
treed0f093d618038577d98fcd463e4b4e7b639ebc60 /fdtput.c
parent03449b84c8f9aee2bf2f438bec2c2ec4606bea48 (diff)
downloaddtc-b9e80656f2de441826ed2ff1cd9c5d43b3ae43d3.tar.gz
util: drop "long" from usage helpers
Now that all utils have converted to the new usage framework, we can rename to just plain "usage()" and avoid naming conflicts. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'fdtput.c')
-rw-r--r--fdtput.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fdtput.c b/fdtput.c
index 99eb05c..fbb283a 100644
--- a/fdtput.c
+++ b/fdtput.c
@@ -327,7 +327,7 @@ int main(int argc, char *argv[])
case 't':
if (utilfdt_decode_type(optarg, &disp.type,
&disp.size))
- long_usage("Invalid type string");
+ usage("Invalid type string");
break;
case 'v':
@@ -339,16 +339,16 @@ int main(int argc, char *argv[])
if (optind < argc)
filename = argv[optind++];
if (!filename)
- long_usage("missing filename");
+ usage("missing filename");
argv += optind;
argc -= optind;
if (disp.oper == OPER_WRITE_PROP) {
if (argc < 1)
- long_usage("missing node");
+ usage("missing node");
if (argc < 2)
- long_usage("missing property");
+ usage("missing property");
}
if (do_fdtput(&disp, filename, argv, argc))