mt6370-regulator.c (4f2c0a4acffbec01079c28f839422e64ddeff004) mt6370-regulator.c (41cff178e3d6df28acd8490519a656c509b4496f)
1// SPDX-License-Identifier: GPL-2.0+
2
3#include <linux/bits.h>
4#include <linux/gpio/consumer.h>
5#include <linux/interrupt.h>
6#include <linux/kernel.h>
7#include <linux/mod_devicetable.h>
8#include <linux/module.h>

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

374 { "mt6370-regulator", 0},
375 {}
376};
377MODULE_DEVICE_TABLE(platform, mt6370_devid_table);
378
379static struct platform_driver mt6370_regulator_driver = {
380 .driver = {
381 .name = "mt6370-regulator",
1// SPDX-License-Identifier: GPL-2.0+
2
3#include <linux/bits.h>
4#include <linux/gpio/consumer.h>
5#include <linux/interrupt.h>
6#include <linux/kernel.h>
7#include <linux/mod_devicetable.h>
8#include <linux/module.h>

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

374 { "mt6370-regulator", 0},
375 {}
376};
377MODULE_DEVICE_TABLE(platform, mt6370_devid_table);
378
379static struct platform_driver mt6370_regulator_driver = {
380 .driver = {
381 .name = "mt6370-regulator",
382 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
382 },
383 .id_table = mt6370_devid_table,
384 .probe = mt6370_regulator_probe,
385};
386module_platform_driver(mt6370_regulator_driver);
387
388MODULE_AUTHOR("ChiYuan Huang <cy_huang@richtek.com>");
389MODULE_DESCRIPTION("Mediatek MT6370 Regulator Driver");
390MODULE_LICENSE("GPL v2");
383 },
384 .id_table = mt6370_devid_table,
385 .probe = mt6370_regulator_probe,
386};
387module_platform_driver(mt6370_regulator_driver);
388
389MODULE_AUTHOR("ChiYuan Huang <cy_huang@richtek.com>");
390MODULE_DESCRIPTION("Mediatek MT6370 Regulator Driver");
391MODULE_LICENSE("GPL v2");