diff mbox series

[1/2] Cosmetic: rename entry points in raw handler

Message ID 20191010100226.29177-1-sbabic@denx.de
State Accepted
Headers show
Series [1/2] Cosmetic: rename entry points in raw handler | expand

Commit Message

Stefano Babic Oct. 10, 2019, 10:02 a.m. UTC
Signed-off-by: Stefano Babic <sbabic@denx.de>
---
 handlers/raw_handler.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/handlers/raw_handler.c b/handlers/raw_handler.c
index 7b6c7a7..df5a336 100644
--- a/handlers/raw_handler.c
+++ b/handlers/raw_handler.c
@@ -20,8 +20,8 @@ 
 #include "handler.h"
 #include "util.h"
 
-void raw_handler(void);
-void raw_filecopy_handler(void);
+void raw_image_handler(void);
+void raw_file_handler(void);
 
 static int install_raw_image(struct img_type *img,
 	void __attribute__ ((__unused__)) *data)
@@ -110,14 +110,14 @@  static int install_raw_file(struct img_type *img,
 }
 
 __attribute__((constructor))
-void raw_handler(void)
+void raw_image_handler(void)
 {
 	register_handler("raw", install_raw_image,
 				IMAGE_HANDLER, NULL);
 }
 
 	__attribute__((constructor))
-void raw_filecopy_handler(void)
+void raw_file_handler(void)
 {
 	register_handler("rawfile", install_raw_file,
 				FILE_HANDLER, NULL);