UPSTREAM: google/urara: Provide dummy implementations of rec/dev functions
This is required to enable elog support in ChromeOS by default. BUG=chrome-os-partner:55639 BRANCH=None TEST=None Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/15896 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) Change-Id: I9c97143d794de4bf220ddf67c0ca2eac2f7a326d Reviewed-on: https://chromium-review.googlesource.com/364020 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
This commit is contained in:
parent
df24f6b203
commit
8bcef6216a
1 changed files with 12 additions and 0 deletions
|
|
@ -28,3 +28,15 @@ void fill_lb_gpios(struct lb_gpios *gpios)
|
|||
{
|
||||
printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
|
||||
}
|
||||
|
||||
int get_developer_mode_switch(void)
|
||||
{
|
||||
printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int get_recovery_mode_switch(void)
|
||||
{
|
||||
printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue