unicore32 i8042 upgrade and bugfix: adjust resource request region type
Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
This commit is contained in:
parent
4ef2ec63cc
commit
4517366d87
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ static inline void i8042_write_command(int val)
|
|||
|
||||
static inline int i8042_platform_init(void)
|
||||
{
|
||||
if (!request_region(I8042_REGION_START, I8042_REGION_SIZE, "i8042"))
|
||||
if (!request_mem_region(I8042_REGION_START, I8042_REGION_SIZE, "i8042"))
|
||||
return -EBUSY;
|
||||
|
||||
i8042_reset = 1;
|
||||
|
@ -67,7 +67,7 @@ static inline int i8042_platform_init(void)
|
|||
|
||||
static inline void i8042_platform_exit(void)
|
||||
{
|
||||
release_region(I8042_REGION_START, I8042_REGION_SIZE);
|
||||
release_mem_region(I8042_REGION_START, I8042_REGION_SIZE);
|
||||
}
|
||||
|
||||
#endif /* _I8042_UNICORE32_H */
|
||||
|
|
Loading…
Reference in a new issue