mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 02:40:08 +00:00
intel_fb: add dummy for ZimaBlade support
When booting Sculpt OS on the ZimaBlade, `i915_vm_free_pt_stash` is called. Providing an empty dummy implementation fixes the issue. Fixes #5145
This commit is contained in:
parent
609a065503
commit
b67df08c9d
@ -844,3 +844,10 @@ void mark_page_accessed(struct page * page)
|
||||
{
|
||||
lx_emul_trace(__func__);
|
||||
}
|
||||
|
||||
|
||||
extern void i915_vm_free_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash);
|
||||
void i915_vm_free_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash)
|
||||
{
|
||||
lx_emul_trace(__func__);
|
||||
}
|
||||
|
@ -1121,13 +1121,6 @@ int i915_vm_alloc_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stas
|
||||
}
|
||||
|
||||
|
||||
extern void i915_vm_free_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash);
|
||||
void i915_vm_free_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash)
|
||||
{
|
||||
lx_emul_trace_and_stop(__func__);
|
||||
}
|
||||
|
||||
|
||||
extern int i915_vm_map_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash);
|
||||
int i915_vm_map_pt_stash(struct i915_address_space * vm,struct i915_vm_pt_stash * stash)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user