Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * TI TPS68470 PMIC platform data definition.
0004  *
0005  * Copyright (c) 2021 Red Hat Inc.
0006  *
0007  * Red Hat authors:
0008  * Hans de Goede <hdegoede@redhat.com>
0009  */
0010 
0011 #ifndef _INTEL_SKL_INT3472_TPS68470_H
0012 #define _INTEL_SKL_INT3472_TPS68470_H
0013 
0014 struct gpiod_lookup_table;
0015 struct tps68470_regulator_platform_data;
0016 
0017 struct int3472_tps68470_board_data {
0018     const char *dev_name;
0019     struct gpiod_lookup_table *tps68470_gpio_lookup_table;
0020     const struct tps68470_regulator_platform_data *tps68470_regulator_pdata;
0021 };
0022 
0023 const struct int3472_tps68470_board_data *int3472_tps68470_get_board_data(const char *dev_name);
0024 
0025 #endif