1 /* ----------------------------------------------------------------------- * 2 * 3 * Copyright 2008 H. Peter Anvin - All Rights Reserved 4 * Copyright 2009 Intel Corporation; author: H. Peter Anvin 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 9 * Boston MA 02110-1301, USA; either version 2 of the License, or 10 * (at your option) any later version; incorporated herein by reference. 11 * 12 * ----------------------------------------------------------------------- */ 13 14 #include <stdio.h> 15 #include <string.h> 16 #include <core.h> 17 #include <fs.h> 18 #include <minmax.h> 19 #include <sys/cpu.h> 20 #include "pxe.h" 21 22 void pxe_idle_init(void) 23 { 24 } 25 26 void pxe_idle_cleanup(void) 27 { 28 idle_hook_func = NULL; 29 } 30