#include<linux/fs.h>
#include<linux/uaccess.h>
#include<linux/slab.h>
#include<linux/gfp.h>
//#include<linux/types.h>
//#include<linux/kernel.h>
//#include<linux/module.h>
char *my_buff = (char*)kmalloc(100,GFP_KERNEL);
char *buff = "Linux Device Drivers programming!";
This is part of the program. I'm getting an error as "Initialiser element is not a constant". Cant figure out what might be the cause of the error.