From b9e80656f2de441826ed2ff1cd9c5d43b3ae43d3 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 24 May 2013 18:04:43 +1000 Subject: 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 Signed-off-by: David Gibson --- fdtput.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fdtput.c') 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)) -- cgit v1.1