File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -77,12 +77,17 @@ static DEFINE_MUTEX(psinfo_lock);
77
77
struct pstore_info * psinfo ;
78
78
79
79
static char * backend ;
80
+ module_param (backend , charp , 0444 );
81
+ MODULE_PARM_DESC (backend , "specific backend to use" );
82
+
80
83
static char * compress =
81
84
#ifdef CONFIG_PSTORE_COMPRESS_DEFAULT
82
85
CONFIG_PSTORE_COMPRESS_DEFAULT ;
83
86
#else
84
87
NULL ;
85
88
#endif
89
+ module_param (compress , charp , 0444 );
90
+ MODULE_PARM_DESC (compress , "compression to use" );
86
91
87
92
/* Compression parameters */
88
93
static struct crypto_comp * tfm ;
@@ -853,11 +858,5 @@ static void __exit pstore_exit(void)
853
858
}
854
859
module_exit (pstore_exit )
855
860
856
- module_param (compress , charp , 0444 );
857
- MODULE_PARM_DESC (compress , "Pstore compression to use ");
858
-
859
- module_param (backend , charp , 0444 );
860
- MODULE_PARM_DESC (backend , "Pstore backend to use ");
861
-
862
861
MODULE_AUTHOR (
"Tony Luck <[email protected] >" );
863
862
MODULE_LICENSE ("GPL" );
You can’t perform that action at this time.
0 commit comments