00001 /* 00002 * kernel_arch/i386/pm.c 00003 * 00004 * Copyright (c) 2003-2005 Lukasz Dembinski <dembol@nasa.com.pl> 00005 * All Rights Reserved 00006 * 00007 * Date: 2005/03 00008 * Author: Lukasz Dembinski 00009 * Info: pm.c core file 00010 * Contact: mailto: <dembol@nasa.com.pl> 00011 * 00012 */ 00013 00014 #include <agnix/agnix.h> 00015 #include <agnix/init.h> 00016 00017 int apm_init(void); 00018 00019 int __init pm_init(void) 00020 { 00021 #if CONFIG_BIOS_APM 00022 apm_init(); 00023 #endif 00024 00025 return 0; 00026 }