mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 09:08:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
25
include/linux/regulator/userspace-consumer.h
Normal file
25
include/linux/regulator/userspace-consumer.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef __REGULATOR_PLATFORM_CONSUMER_H_
|
||||
#define __REGULATOR_PLATFORM_CONSUMER_H_
|
||||
|
||||
struct regulator_consumer_supply;
|
||||
|
||||
/**
|
||||
* struct regulator_userspace_consumer_data - line consumer
|
||||
* initialisation data.
|
||||
*
|
||||
* @name: Name for the consumer line
|
||||
* @num_supplies: Number of supplies feeding the line
|
||||
* @supplies: Supplies configuration.
|
||||
* @init_on: Set if the regulators supplying the line should be
|
||||
* enabled during initialisation
|
||||
*/
|
||||
struct regulator_userspace_consumer_data {
|
||||
const char *name;
|
||||
|
||||
int num_supplies;
|
||||
struct regulator_bulk_data *supplies;
|
||||
|
||||
bool init_on;
|
||||
};
|
||||
|
||||
#endif /* __REGULATOR_PLATFORM_CONSUMER_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue