I have doubt on writing structure like this. Why here we have to equate some thing to some other thing (.owner = THIS_MODULE)
const struct file_operations nvram_fops = {
.owner = THIS_MODULE,
.llseek = nvram_llseek,
.read = read_nvram,
.write = write_nvram,
.ioctl = nvram_ioctl,
};
PLease help on this.