diff options
author | Walt Feasel <waltfeasel@gmail.com> | 2016-11-23 01:26:11 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-04 13:54:57 -0500 |
commit | b4c650d14eb1298a5ffdcb6fa09db72b479ebeb9 (patch) | |
tree | 6b1cf419ef57e00871f54cb9fa4f082fb1172305 /api | |
parent | e5fbf2a73137dbf3b92b4dd26ddd2ea2500bef46 (diff) | |
download | u-boot-b4c650d14eb1298a5ffdcb6fa09db72b479ebeb9.zip u-boot-b4c650d14eb1298a5ffdcb6fa09db72b479ebeb9.tar.gz u-boot-b4c650d14eb1298a5ffdcb6fa09db72b479ebeb9.tar.bz2 |
Cosmetic api: api_storage.c Blank line after {
Make checkpatch style modification for
CHECK: Blank lines aren't necessary after
an open brace '{'
Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
Diffstat (limited to 'api')
-rw-r--r-- | api/api_storage.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/api/api_storage.c b/api/api_storage.c index 81c672d..f857ada 100644 --- a/api/api_storage.c +++ b/api/api_storage.c @@ -220,7 +220,6 @@ static int dev_enum_stor(int type, struct device_info *di) */ if (di->cookie == NULL) { - debugf("group%d - enum restart\n", type); /* @@ -231,7 +230,6 @@ static int dev_enum_stor(int type, struct device_info *di) specs[type].enum_started = 1; } else if (dev_is_stor(type, di)) { - debugf("group%d - enum continued for the next device\n", type); if (specs[type].enum_ended) { @@ -243,7 +241,6 @@ static int dev_enum_stor(int type, struct device_info *di) found = dev_stor_get(type, 0, &more, di); } else { - if (specs[type].enum_ended) { debugf("group %d - already enumerated, skipping\n", type); return 0; |