[U-Boot] [PATCH 05/20] stdio: Correct code style nits
    Simon Glass 
    sjg at chromium.org
       
    Mon Oct 31 21:39:21 CET 2016
    
    
  
Fix a few code style nits in stdio_get_by_name().
Signed-off-by: Simon Glass <sjg at chromium.org>
---
 common/stdio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/stdio.c b/common/stdio.c
index 8e4a9be..a7d016b 100644
--- a/common/stdio.c
+++ b/common/stdio.c
@@ -173,12 +173,12 @@ static int stdio_probe_device(const char *name, enum uclass_id id,
 }
 #endif
 
-struct stdio_dev* stdio_get_by_name(const char *name)
+struct stdio_dev *stdio_get_by_name(const char *name)
 {
 	struct list_head *pos;
 	struct stdio_dev *sdev;
 
-	if(!name)
+	if (!name)
 		return NULL;
 
 	list_for_each(pos, &(devs.list)) {
-- 
2.8.0.rc3.226.g39d4020
    
    
More information about the U-Boot
mailing list