added missing function xhdi_reaccess()
This commit is contained in:
@@ -302,7 +302,20 @@ uint32_t xhdi_call(int xhdi_fun, ...)
|
||||
}
|
||||
break;
|
||||
|
||||
case XHDI_REACCESS:
|
||||
{
|
||||
uint16_t major;
|
||||
uint16_t minor;
|
||||
|
||||
major = va_arg(arguments, unsigned int);
|
||||
minor = va_arg(arguments, unsigned int);
|
||||
|
||||
return xhdi_reaccess(major, minor);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
;
|
||||
}
|
||||
xprintf("unknown XHDI function %d\r\n");
|
||||
|
||||
@@ -120,3 +120,8 @@ uint32_t xhdi_last_access(UINT16_T major, UINT16_T minor, uint32_t *ms)
|
||||
{
|
||||
return ERROR;
|
||||
}
|
||||
|
||||
uint32_t xhdi_reaccess(UINT16_T major, UINT16_T minor)
|
||||
{
|
||||
return ERROR;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user