summaryrefslogtreecommitdiff
path: root/extra/usb_updater/desc_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'extra/usb_updater/desc_parser.c')
-rw-r--r--extra/usb_updater/desc_parser.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/extra/usb_updater/desc_parser.c b/extra/usb_updater/desc_parser.c
index 5bd996bdda..7e9f583902 100644
--- a/extra/usb_updater/desc_parser.c
+++ b/extra/usb_updater/desc_parser.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 The Chromium OS Authors. All rights reserved.
+ * Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -75,8 +75,7 @@ static int get_next_token(char *input, size_t expected_size, char **output)
next_colon = strchr(input, ':');
if (next_colon)
*next_colon = '\0';
- if (!next_colon || (expected_size &&
- strlen(input) != expected_size)) {
+ if (!next_colon || (expected_size && strlen(input) != expected_size)) {
fprintf(stderr, "Invalid entry in section %d\n",
section_count_);
return -EINVAL;
@@ -98,16 +97,15 @@ static int get_hex_value(char *input, char **output)
value = strtol(input, &e, 16);
if ((e && *e) || (strlen(input) > 8)) {
- fprintf(stderr, "Invalid hex value %s in section %d\n",
- input, section_count_);
+ fprintf(stderr, "Invalid hex value %s in section %d\n", input,
+ section_count_);
return -EINVAL;
}
return value;
}
-static int parse_range(char *next_line,
- size_t line_len,
+static int parse_range(char *next_line, size_t line_len,
struct addr_range *parsed_range)
{
char *line_cursor;
@@ -299,7 +297,6 @@ int parser_get_next_range(struct addr_range **range)
*range = new_range;
return 0;
-
}
int parser_find_board(const char *hash_file_name, const char *board_id)