From ec7567030ba5c1ccc213c44b9f5db73234ad82f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 27 Jan 2003 13:51:46 +0000 Subject: [PATCH] load_driver_symbols() is no longer part of the public API. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2582 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/drivers/dev.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/kernel/drivers/dev.c b/src/kernel/drivers/dev.c index 103d26364c..706dd56331 100755 --- a/src/kernel/drivers/dev.c +++ b/src/kernel/drivers/dev.c @@ -194,14 +194,13 @@ error: } +/* This is no longer part of the public kernel API, so we just export the symbol */ +int load_driver_symbols(const char *driver_name); int -load_driver_symbols(const char * driver_name) +load_driver_symbols(const char *driver_name) { - // phoudoin: currently, elf_load_kspace() keep in memory symbols list with - // the image info, and the KDL back trace utility use it. - // So we don't have anything more to do here. - // TODO: However, in the future, as we may have image symbols list - // not loaded anymore in memory, we should do something here then!!! + // This will be globally done for the whole kernel via the settings file. + // We don't have to do anything here. return B_OK; }