How to strip Linux kernel modules?

Stripping linux kernel module objects is possible but you need to take attention that you can’t use the default parameters. You can only strip debugging symbols from kernel objects with --strip-debug parameter:

strip --strip-debug module.ko

If you don’t give any parameter at all, it will also removes the names of the symbols that the module calls.