]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
spl: Use a single underscore in the SPL_LOAD_IMAGE_METHOD() macro
authorSimon Glass <sjg@chromium.org>
Wed, 30 Nov 2016 22:30:49 +0000 (15:30 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 9 Dec 2016 13:40:10 +0000 (08:40 -0500)
A double underscore is normally reserved for compiler predefines. Use a
single underscore instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/spl.h

index c727eb76d4276fe636e27789b9ce8fa8f6109333..9d221c1b55fb4eeaed2a576d3ea9f13caac7543f 100644 (file)
@@ -172,15 +172,15 @@ struct spl_image_loader {
        ll_entry_declare(struct spl_image_loader, __name, spl_image_loader)
 
 /*
- * __priority is the priority of this method, 0 meaning it will be the top
+ * _priority is the priority of this method, 0 meaning it will be the top
  * choice for this device, 9 meaning it is the bottom choice.
- * __boot_device is the BOOT_DEVICE_... value
- * __method is the load_image function to call
+ * _boot_device is the BOOT_DEVICE_... value
+ * _method is the load_image function to call
  */
-#define SPL_LOAD_IMAGE_METHOD(__priority, __boot_device, __method) \
-       SPL_LOAD_IMAGE(__method ## __priority ## __boot_device) = { \
-               .boot_device = __boot_device, \
-               .load_image = __method, \
+#define SPL_LOAD_IMAGE_METHOD(_priority, _boot_device, _method) \
+       SPL_LOAD_IMAGE(_method ## _priority ## _boot_device) = { \
+               .boot_device = _boot_device, \
+               .load_image = _method, \
        }
 
 /* SPL FAT image functions */