File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2877,7 +2877,7 @@ pub enum AmlError {
2877
2877
UnexpectedResourceType ,
2878
2878
2879
2879
NoHandlerForRegionAccess ( RegionSpace ) ,
2880
- MutexAquireTimeout ,
2880
+ MutexAcquireTimeout ,
2881
2881
2882
2882
PrtInvalidAddress ,
2883
2883
PrtInvalidPin ,
@@ -2946,9 +2946,9 @@ pub trait Handler: Send + Sync {
2946
2946
/// Acquire the mutex referred to by the given handle. `timeout` is a millisecond timeout value
2947
2947
/// with the following meaning:
2948
2948
/// - `0` - try to acquire the mutex once, in a non-blocking manner. If the mutex cannot be
2949
- /// acquired immediately, return `Err(AmlError::MutexAquireTimeout )`
2949
+ /// acquired immediately, return `Err(AmlError::MutexAcquireTimeout )`
2950
2950
/// - `1-0xfffe` - try to acquire the mutex for at least `timeout` milliseconds.
2951
- /// - `0xffff` - try to acquire the mutex indefinitely. Should not return `MutexAquireTimeout `.
2951
+ /// - `0xffff` - try to acquire the mutex indefinitely. Should not return `MutexAcquireTimeout `.
2952
2952
///
2953
2953
/// AML mutexes are **reentrant** - that is, a thread may acquire the same mutex more than once
2954
2954
/// without causing a deadlock.
You can’t perform that action at this time.
0 commit comments