params: clean up module-param macros
[sfrench/cifs-2.6.git] / include / linux / moduleparam.h
index 15ecc6cc3a3b1a1462a7a58543a88784bce0a91b..eed280fae43303d20690c7b25b15ef2655922728 100644 (file)
 #define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
 
 #define __MODULE_INFO(tag, name, info)                                   \
-static const char __UNIQUE_ID(name)[]                                    \
-  __used __section(".modinfo") __attribute__((aligned(1)))               \
-  = __MODULE_INFO_PREFIX __stringify(tag) "=" info
+       static const char __UNIQUE_ID(name)[]                             \
+               __used __section(".modinfo") __aligned(1)                 \
+               = __MODULE_INFO_PREFIX __stringify(tag) "=" info
 
 #define __MODULE_PARM_TYPE(name, _type)                                          \
-  __MODULE_INFO(parmtype, name##type, #name ":" _type)
+       __MODULE_INFO(parmtype, name##type, #name ":" _type)
 
 /* One for each parameter, describing how to use it.  Some files do
    multiple of these per line, so can't just use MODULE_INFO. */