[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
include
/
linux
/
usb
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 audio.h
19,490 B
SET
[ EDIT ]
|
[ DEL ]
📄 cdc-wdm.h
739 B
SET
[ EDIT ]
|
[ DEL ]
📄 cdc.h
13,478 B
SET
[ EDIT ]
|
[ DEL ]
📄 ch11.h
9,149 B
SET
[ EDIT ]
|
[ DEL ]
📄 ch9.h
39,522 B
SET
[ EDIT ]
|
[ DEL ]
📄 charger.h
598 B
SET
[ EDIT ]
|
[ DEL ]
📄 functionfs.h
10,370 B
SET
[ EDIT ]
|
[ DEL ]
📄 g_printer.h
1,385 B
SET
[ EDIT ]
|
[ DEL ]
📄 g_uvc.h
1,073 B
SET
[ EDIT ]
|
[ DEL ]
📄 gadgetfs.h
2,818 B
SET
[ EDIT ]
|
[ DEL ]
📄 midi.h
3,434 B
SET
[ EDIT ]
|
[ DEL ]
📄 tmc.h
4,854 B
SET
[ EDIT ]
|
[ DEL ]
📄 video.h
17,295 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: charger.h
/* * This file defines the USB charger type and state that are needed for * USB device APIs. */ #ifndef __LINUX_USB_CHARGER_H #define __LINUX_USB_CHARGER_H /* * USB charger type: * SDP (Standard Downstream Port) * DCP (Dedicated Charging Port) * CDP (Charging Downstream Port) * ACA (Accessory Charger Adapters) */ enum usb_charger_type { UNKNOWN_TYPE = 0, SDP_TYPE = 1, DCP_TYPE = 2, CDP_TYPE = 3, ACA_TYPE = 4, }; /* USB charger state */ enum usb_charger_state { USB_CHARGER_DEFAULT = 0, USB_CHARGER_PRESENT = 1, USB_CHARGER_ABSENT = 2, }; #endif /* __LINUX_USB_CHARGER_H */