Revision b074cf80a7d40fefe1f4063c9841232171e8daea authored by Wolfram Sang on 05 November 2014, 22:44:11 UTC, committed by Wolfram Sang on 19 December 2014, 18:32:47 UTC
The new driver is around for more than 2 years now, so the old one can
go. Getting rid of it helps the removal of the legacy .attach_adapter
callback of the I2C subsystem.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1 parent f16ea4f
Raw File
staging.c
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>

static int __init staging_init(void)
{
	return 0;
}

static void __exit staging_exit(void)
{
}

module_init(staging_init);
module_exit(staging_exit);

MODULE_AUTHOR("Greg Kroah-Hartman");
MODULE_DESCRIPTION("Staging Core");
MODULE_LICENSE("GPL");
back to top