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 v5.2-rc7 16 lines 328 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (C) 2009 Samsung Electronics 4 * Minkyu Kang <mk7.kang@samsung.com> 5 */ 6 7#ifndef __MAX17040_BATTERY_H_ 8#define __MAX17040_BATTERY_H_ 9 10struct max17040_platform_data { 11 int (*battery_online)(void); 12 int (*charger_online)(void); 13 int (*charger_enable)(void); 14}; 15 16#endif