Module Parameters#

#include <linux/module.h>
#include <linux/moduleparam.h>  /* not strictly needed, linux/module.h already pulls it in */
#include <linux/kernel.h>

module_param(name, type, perm);
MODULE_PARM_DESC(myarr, "this is my array of int");

Pass the value at load time:

insmod module.ko param=value