Hi Wolfram, On Tue, 16 May 2017 13:21:04 +0200, Wolfram Sang wrote: > Signed-off-by: Wolfram Sang <wsa+renesas@xxxxxxxxxxxxxxxxxxxx> > --- > drivers/i2c/i2c-stub.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/i2c/i2c-stub.c b/drivers/i2c/i2c-stub.c > index 06af583d510150..0aa4d646f8fb26 100644 > --- a/drivers/i2c/i2c-stub.c > +++ b/drivers/i2c/i2c-stub.c > @@ -406,16 +406,15 @@ static int __init i2c_stub_init(void) > i2c_stub_free(); > return ret; > } > +module_init(i2c_stub_init); > > static void __exit i2c_stub_exit(void) > { > i2c_del_adapter(&stub_adapter); > i2c_stub_free(); > } > +module_exit(i2c_stub_exit); > > MODULE_AUTHOR("Mark M. Hoffman <mhoffman@xxxxxxxxxxxxx>"); > MODULE_DESCRIPTION("I2C stub driver"); > MODULE_LICENSE("GPL"); > - > -module_init(i2c_stub_init); > -module_exit(i2c_stub_exit); I'm not sure on what you base your claim that this is the "proper place". checkpatch doesn't complain about either, and if anything, the original style (module_init/exit) at end of file seems a lot more popular through the kernel tree. -- Jean Delvare SUSE L3 Support -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html