cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

tps68470.h (638B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * TI TPS68470 PMIC platform data definition.
      4 *
      5 * Copyright (c) 2021 Red Hat Inc.
      6 *
      7 * Red Hat authors:
      8 * Hans de Goede <hdegoede@redhat.com>
      9 */
     10
     11#ifndef _INTEL_SKL_INT3472_TPS68470_H
     12#define _INTEL_SKL_INT3472_TPS68470_H
     13
     14struct gpiod_lookup_table;
     15struct tps68470_regulator_platform_data;
     16
     17struct int3472_tps68470_board_data {
     18	const char *dev_name;
     19	struct gpiod_lookup_table *tps68470_gpio_lookup_table;
     20	const struct tps68470_regulator_platform_data *tps68470_regulator_pdata;
     21};
     22
     23const struct int3472_tps68470_board_data *int3472_tps68470_get_board_data(const char *dev_name);
     24
     25#endif