[haiku-commits] r41335 - haiku/trunk/src/add-ons/accelerants/radeon_hd
- From: kallisti5@xxxxxxxxxxx
- To: haiku-commits@xxxxxxxxxxxxx
- Date: Fri, 6 May 2011 00:55:03 +0200 (CEST)
Author: kallisti5
Date: 2011-05-06 00:55:02 +0200 (Fri, 06 May 2011)
New Revision: 41335
Changeset: https://dev.haiku-os.org/changeset/41335
Modified:
haiku/trunk/src/add-ons/accelerants/radeon_hd/bios.h
haiku/trunk/src/add-ons/accelerants/radeon_hd/mode.h
Log:
add header file ifndef guard
Modified: haiku/trunk/src/add-ons/accelerants/radeon_hd/bios.h
===================================================================
--- haiku/trunk/src/add-ons/accelerants/radeon_hd/bios.h 2011-05-05
22:52:17 UTC (rev 41334)
+++ haiku/trunk/src/add-ons/accelerants/radeon_hd/bios.h 2011-05-05
22:55:02 UTC (rev 41335)
@@ -5,6 +5,8 @@
* Authors:
* Alexander von Gluck IV, kallisti5@xxxxxxxxxxx
*/
+#ifndef RADEON_HD_BIOS_H
+#define RADEON_HD_BIOS_H
#include <stdint.h>
@@ -20,3 +22,5 @@
status_t AtomParser(void *parameterSpace, uint8_t index,
void *handle, void *biosBase);
+
+#endif /* RADEON_HD_BIOS_H */
Modified: haiku/trunk/src/add-ons/accelerants/radeon_hd/mode.h
===================================================================
--- haiku/trunk/src/add-ons/accelerants/radeon_hd/mode.h 2011-05-05
22:52:17 UTC (rev 41334)
+++ haiku/trunk/src/add-ons/accelerants/radeon_hd/mode.h 2011-05-05
22:55:02 UTC (rev 41335)
@@ -5,6 +5,8 @@
* Authors:
* Alexander von Gluck, kallisti5@xxxxxxxxxxx
*/
+#ifndef RADEON_HD_MODE_H
+#define RADEON_HD_MODE_H
#include <create_display_modes.h>
@@ -15,3 +17,5 @@
status_t create_mode_list(void);
status_t mode_sanity_check(display_mode *mode);
+
+#endif /*RADEON_HD_MODE_H*/
Other related posts:
- » [haiku-commits] r41335 - haiku/trunk/src/add-ons/accelerants/radeon_hd - kallisti5