On 8/17/24 02:33, Rodolfo Zitellini wrote: ... > +module_init(tashtalk_init); > +module_exit(tashtalk_exit); > + > +MODULE_LICENSE("GPL"); > +MODULE_ALIAS_LDISC(N_TASHTALK); missing MODULE_DESCRIPTION() Since commit 1fffe7a34c89 ("script: modpost: emit a warning when the description is missing"), a module without a MODULE_DESCRIPTION() will result in a warning when built with make W=1. Recently, multiple developers have been eradicating these warnings treewide, and very few are left, so please don't introduce a new one :) /jeff