Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14 15 lines 296 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Platform data for the TI bq25890 battery charger driver. 4 */ 5 6#ifndef _BQ25890_CHARGER_H_ 7#define _BQ25890_CHARGER_H_ 8 9struct regulator_init_data; 10 11struct bq25890_platform_data { 12 const struct regulator_init_data *regulator_init_data; 13}; 14 15#endif