Is it possible to build a kernel module from several source files which one of them has the same name as the module?
For example: I want to build \"mymodule.ko\" wit
Proper way to fix in kernel make file would be as:
# obj-m+= my_module.o #append other source files except my_module.c which would be include by default my_module-objs+= src1.o src2.o