svc: Make ResetType an enum class
This commit is contained in:
parent
2f0a61debf
commit
12e92f17de
11 changed files with 23 additions and 24 deletions
|
@ -20,11 +20,10 @@ struct PageInfo {
|
|||
u32 flags;
|
||||
};
|
||||
|
||||
enum ResetType {
|
||||
RESETTYPE_ONESHOT,
|
||||
RESETTYPE_STICKY,
|
||||
RESETTYPE_PULSE,
|
||||
RESETTYPE_MAX_BIT = (1u << 31),
|
||||
enum class ResetType {
|
||||
OneShot,
|
||||
Sticky,
|
||||
Pulse,
|
||||
};
|
||||
|
||||
enum ArbitrationType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue