Hello I'm trying to write a loadable kernel module driver. I get an error during compilation: ERROR: modpost: "platform_device_alloc" [/home/rdm/ethtest/eth-ins.ko] undefined! Do I need something to set in the Kernel Config? Helloworld works as LKM.
#include <linux/platform_device.h>#include <linux/module.h#include <linux/types.h>MODULE_LICENSE("GPL");MODULE_AUTHOR("Robert W. Oliver II");MODULE_DESCRIPTION("A simple example Linux module.");MODULE_VERSION("0.01");static struct platform_device *pd...