xref: /openbsd-src/sys/dev/pci/drm/include/linux/power_supply.h (revision e77e4c40dd2894b56ea0aa9adee8be41d74b15b8)
1 /* Public domain. */
2 
3 #ifndef _LINUX_POWER_SUPPLY_H
4 #define _LINUX_POWER_SUPPLY_H
5 
6 static inline int
power_supply_is_system_supplied(void)7 power_supply_is_system_supplied(void)
8 {
9 	extern int hw_power;
10 	return hw_power;
11 }
12 
13 #endif
14