tps68470-regulator.c (03ab8e6297acd1bc0eedaa050e2a1635c576fd11) | tps68470-regulator.c (41cff178e3d6df28acd8490519a656c509b4496f) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2// 3// Regulator driver for TPS68470 PMIC 4// 5// Copyright (c) 2021 Red Hat Inc. 6// Copyright (C) 2018 Intel Corporation 7// 8// Authors: --- 161 unchanged lines hidden (view full) --- 170 } 171 172 return 0; 173} 174 175static struct platform_driver tps68470_regulator_driver = { 176 .driver = { 177 .name = "tps68470-regulator", | 1// SPDX-License-Identifier: GPL-2.0 2// 3// Regulator driver for TPS68470 PMIC 4// 5// Copyright (c) 2021 Red Hat Inc. 6// Copyright (C) 2018 Intel Corporation 7// 8// Authors: --- 161 unchanged lines hidden (view full) --- 170 } 171 172 return 0; 173} 174 175static struct platform_driver tps68470_regulator_driver = { 176 .driver = { 177 .name = "tps68470-regulator", |
178 .probe_type = PROBE_PREFER_ASYNCHRONOUS, |
|
178 }, 179 .probe = tps68470_regulator_probe, 180}; 181 182/* 183 * The ACPI tps68470 probe-ordering depends on the clk/gpio/regulator drivers 184 * registering before the drivers for the camera-sensors which use them bind. 185 * subsys_initcall() ensures this when the drivers are builtin. --- 16 unchanged lines hidden --- | 179 }, 180 .probe = tps68470_regulator_probe, 181}; 182 183/* 184 * The ACPI tps68470 probe-ordering depends on the clk/gpio/regulator drivers 185 * registering before the drivers for the camera-sensors which use them bind. 186 * subsys_initcall() ensures this when the drivers are builtin. --- 16 unchanged lines hidden --- |