wifi: remove dde_kit

Fixes #1565
This commit is contained in:
Sebastian Sumpf
2015-05-19 17:51:00 +02:00
committed by Christian Helmuth
parent 146b34bf40
commit e1be0b3f67
3 changed files with 2 additions and 4 deletions

View File

@ -348,7 +348,6 @@ extern unsigned long jiffies;
time_t time(time_t *t)
{
dde_kit_printf("%s:%d from: %p\n", __func__, __LINE__, __builtin_return_address(0));
return jiffies;
}

View File

@ -1190,7 +1190,7 @@ int request_firmware_nowait(struct module *module, bool uevent,
return -1;
}
/* use dde_kit_large_malloc because our slab only goes up to 64KiB */
/* use Genode env because our slab only goes up to 64KiB */
fw->data = (u8*)Genode::env()->heap()->alloc(fwl->size);
if (!fw->data) {
PERR("could not allocate memory for firmware image");