drm/amd/display: Rearrange dmub_cmd defs order
- Rearranged defs order Acked-by: Alex Hung <alex.hung@amd.com> Signed-off-by: Anthony Koo <anthony.koo@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
80f63f36b8
commit
e721611b32
@ -144,6 +144,32 @@
|
||||
#define PHYSICAL_ADDRESS_LOC union large_integer
|
||||
#endif
|
||||
|
||||
/**
|
||||
* OS/FW agnostic memcpy
|
||||
*/
|
||||
#ifndef dmub_memcpy
|
||||
#define dmub_memcpy(dest, source, bytes) memcpy((dest), (source), (bytes))
|
||||
#endif
|
||||
|
||||
/**
|
||||
* OS/FW agnostic memset
|
||||
*/
|
||||
#ifndef dmub_memset
|
||||
#define dmub_memset(dest, val, bytes) memset((dest), (val), (bytes))
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* OS/FW agnostic udelay
|
||||
*/
|
||||
#ifndef dmub_udelay
|
||||
#define dmub_udelay(microseconds) udelay(microseconds)
|
||||
#endif
|
||||
|
||||
#pragma pack(push, 1)
|
||||
#define ABM_NUM_OF_ACE_SEGMENTS 5
|
||||
|
||||
union abm_flags {
|
||||
@ -233,34 +259,6 @@ struct abm_save_restore {
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* OS/FW agnostic memcpy
|
||||
*/
|
||||
#ifndef dmub_memcpy
|
||||
#define dmub_memcpy(dest, source, bytes) memcpy((dest), (source), (bytes))
|
||||
#endif
|
||||
|
||||
/**
|
||||
* OS/FW agnostic memset
|
||||
*/
|
||||
#ifndef dmub_memset
|
||||
#define dmub_memset(dest, val, bytes) memset((dest), (val), (bytes))
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* OS/FW agnostic udelay
|
||||
*/
|
||||
#ifndef dmub_udelay
|
||||
#define dmub_udelay(microseconds) udelay(microseconds)
|
||||
#endif
|
||||
|
||||
#pragma pack(push, 1)
|
||||
/**
|
||||
* union dmub_addr - DMUB physical/virtual 64-bit address.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user