コード例 #1
0
ファイル: cm3232.c プロジェクト: Dee-UK/RK3188_KK_4.4.02_Beta
static int __init light_cm3232_init(void)
{
	struct sensor_operate *ops = light_get_ops();
	int result = 0;
	int type = ops->type;
	result = sensor_register_slave(type, NULL, NULL, light_get_ops);
	return result;
}
コード例 #2
0
ファイル: cm3217.c プロジェクト: AndrewDB/rk3066-kernel
static int __init light_init(void)
{
	struct sensor_operate *ops = light_get_ops();
	int result = 0;
	int type = ops->type;
	result = sensor_register_slave(type, NULL, NULL, light_get_ops);
	printk("%s\n",__func__);
	return result;
}
コード例 #3
0
ファイル: cm3232.c プロジェクト: Dee-UK/RK3188_KK_4.4.02_Beta
static void __exit light_cm3232_exit(void)
{
	struct sensor_operate *ops = light_get_ops();
	int type = ops->type;
	sensor_unregister_slave(type, NULL, NULL, light_get_ops);
}