mirror of
https://github.com/edk2-porting/edk2-msm
synced 2025-05-20 22:47:57 +00:00
17 lines
455 B
C
17 lines
455 B
C
//
|
|
// BLCP Method - Secondary display backlight control packet method, returns a
|
|
// command buffer for a specific backlight level
|
|
//
|
|
// Backlight configuration format is same as BLCP of primary panel in backlightcfg.asl
|
|
//
|
|
Method (BLC2, 1, NotSerialized) {
|
|
|
|
// Create Response buffer
|
|
Name(RBUF, Buffer(0x100){})
|
|
|
|
// Details to be populated by OEM based on the platform requirements
|
|
|
|
// Return the packet data
|
|
Return(RBUF)
|
|
}
|