bh1770glc.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) bh1770glc.c (2d6bed9ca93e98685bc5038d686984fd449cd978)
1/*
2 * This file is part of the ROHM BH1770GLC / OSRAM SFH7770 sensor driver.
3 * Chip is combined proximity and ambient light sensor.
4 *
5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6 *
7 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
8 *

--- 1381 unchanged lines hidden (view full) ---

1390
1391static struct i2c_driver bh1770_driver = {
1392 .driver = {
1393 .name = "bh1770glc",
1394 .owner = THIS_MODULE,
1395 .pm = &bh1770_pm_ops,
1396 },
1397 .probe = bh1770_probe,
1/*
2 * This file is part of the ROHM BH1770GLC / OSRAM SFH7770 sensor driver.
3 * Chip is combined proximity and ambient light sensor.
4 *
5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6 *
7 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
8 *

--- 1381 unchanged lines hidden (view full) ---

1390
1391static struct i2c_driver bh1770_driver = {
1392 .driver = {
1393 .name = "bh1770glc",
1394 .owner = THIS_MODULE,
1395 .pm = &bh1770_pm_ops,
1396 },
1397 .probe = bh1770_probe,
1398 .remove = __devexit_p(bh1770_remove),
1398 .remove = bh1770_remove,
1399 .id_table = bh1770_id,
1400};
1401
1402module_i2c_driver(bh1770_driver);
1403
1404MODULE_DESCRIPTION("BH1770GLC / SFH7770 combined ALS and proximity sensor");
1405MODULE_AUTHOR("Samu Onkalo, Nokia Corporation");
1406MODULE_LICENSE("GPL v2");
1399 .id_table = bh1770_id,
1400};
1401
1402module_i2c_driver(bh1770_driver);
1403
1404MODULE_DESCRIPTION("BH1770GLC / SFH7770 combined ALS and proximity sensor");
1405MODULE_AUTHOR("Samu Onkalo, Nokia Corporation");
1406MODULE_LICENSE("GPL v2");