1 /* 2 * Copyright 2011, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Alexander von Gluck IV, kallisti5@unixzen.com 7 */ 8 #ifndef RADEON_HD_BIOS_H 9 #define RADEON_HD_BIOS_H 10 11 12 #include <stdint.h> 13 14 #include "atom.h" 15 16 17 status_t radeon_init_bios(uint8* bios); 18 bool radeon_bios_isposted(); 19 status_t radeon_dump_bios(); 20 21 22 #endif /* RADEON_HD_BIOS_H */ 23