mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-26 08:20:18 +00:00
rtkit: Fix bug with version selection
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
476710410c
commit
ae1d7c4348
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ bool rtkit_boot(rtkit_dev_t *rtk)
|
||||||
max_ver = FIELD_GET(MGMT_MSG_HELLO_MAXVER, msg.msg0);
|
max_ver = FIELD_GET(MGMT_MSG_HELLO_MAXVER, msg.msg0);
|
||||||
want_ver = min(RTKIT_MAX_VERSION, max_ver);
|
want_ver = min(RTKIT_MAX_VERSION, max_ver);
|
||||||
|
|
||||||
if (min_ver > RTKIT_MIN_VERSION || max_ver < RTKIT_MAX_VERSION) {
|
if (min_ver > RTKIT_MAX_VERSION || max_ver < RTKIT_MIN_VERSION) {
|
||||||
rtkit_printf("supported versions [%d,%d] must overlap versions [%d,%d]\n",
|
rtkit_printf("supported versions [%d,%d] must overlap versions [%d,%d]\n",
|
||||||
RTKIT_MIN_VERSION, RTKIT_MAX_VERSION, min_ver, max_ver);
|
RTKIT_MIN_VERSION, RTKIT_MAX_VERSION, min_ver, max_ver);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue