blob: 324692f31ea86aaccda7ed84791480084c5c2f07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// MIT License, Copyright (c) 2021 Marvin Borner
#include <panic.h>
#include <protocols/all.h>
#include <protocols/mb1.h>
#include <protocols/mb2.h>
u8 impl_detect(struct config_entry *cfg)
{
if (mb1_detect(cfg))
return 1;
if (mb2_detect(cfg))
return 1;
return 0;
}
void impl_exec(struct config_entry *cfg)
{
assert(cfg->dev->type == DEVICE_DISK);
switch (cfg->impl.type) {
case IMPL_MB1:
mb1_exec(cfg);
break;
case IMPL_MB2:
mb2_exec(cfg);
break;
case IMPL_NONE:
default:
panic("Invalid implementation\n");
}
panic("Couldn't execute implementation\n");
}
|