Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6113c3a5 authored by Liam Girdwood's avatar Liam Girdwood
Browse files

regulator: lp3971 - fix driver link error when built-in.



lp3971_i2c_remove' referenced in section `.data' of drivers/built-in.o:
defined in discarded section `.devexit.text' of drivers/built-in.o

Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 0cbdf7bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -535,7 +535,7 @@ static struct i2c_driver lp3971_i2c_driver = {
		.owner = THIS_MODULE,
		.owner = THIS_MODULE,
	},
	},
	.probe    = lp3971_i2c_probe,
	.probe    = lp3971_i2c_probe,
	.remove   = lp3971_i2c_remove,
	.remove   = __devexit_p(lp3971_i2c_remove),
	.id_table = lp3971_i2c_id,
	.id_table = lp3971_i2c_id,
};
};