Home | History | Annotate | Download | only in linux

Lines Matching refs:str

62  const char *str;
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, fn) __setup_param(str, fn, fn, 1)
99 #define __setup_param(str, unique_id, fn)
100 #define __setup_null_param(str, unique_id)
101 #define __setup(str, func)
102 #define __obsolete_setup(str)