[haiku-commits] r38298 - haiku/trunk/src/system/boot/platform/openfirmware

  • From: andreas.faerber@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 21 Aug 2010 19:01:18 +0200 (CEST)

Author: andreasf
Date: 2010-08-21 19:01:18 +0200 (Sat, 21 Aug 2010)
New Revision: 38298
Changeset: http://dev.haiku-os.org/changeset/38298

Modified:
   haiku/trunk/src/system/boot/platform/openfirmware/console.cpp
   haiku/trunk/src/system/boot/platform/openfirmware/video.cpp
Log:
boot_loader_openfirmware: Coding style fixes

Rearrange copyright notice, reorder #includes.

No functional changes yet.


Modified: haiku/trunk/src/system/boot/platform/openfirmware/console.cpp
===================================================================
--- haiku/trunk/src/system/boot/platform/openfirmware/console.cpp       
2010-08-21 15:29:52 UTC (rev 38297)
+++ haiku/trunk/src/system/boot/platform/openfirmware/console.cpp       
2010-08-21 17:01:18 UTC (rev 38298)
@@ -1,16 +1,19 @@
 /*
- * Copyright 2003-2005, Axel Dörfler, axeld@xxxxxxxxxxxxxxxxx All rights 
reserved.
- * Distributed under the terms of the MIT License.
+ * Copyright 2003-2005, Axel Dörfler, axeld@xxxxxxxxxxxxxxxxx
+ * All rights reserved. Distributed under the terms of the MIT License.
  */
 
 
+#include "console.h"
+
+#include <string.h>
+
 #include <SupportDefs.h>
-#include <string.h>
+
 #include <platform/openfirmware/openfirmware.h>
 #include <util/kernel_cpp.h>
 
 #include "Handle.h"
-#include "console.h"
 
 
 class ConsoleHandle : public Handle {

Modified: haiku/trunk/src/system/boot/platform/openfirmware/video.cpp
===================================================================
--- haiku/trunk/src/system/boot/platform/openfirmware/video.cpp 2010-08-21 
15:29:52 UTC (rev 38297)
+++ haiku/trunk/src/system/boot/platform/openfirmware/video.cpp 2010-08-21 
17:01:18 UTC (rev 38298)
@@ -1,6 +1,6 @@
 /*
- * Copyright 2004, Axel Dörfler, axeld@xxxxxxxxxxxxxxxxx All rights reserved.
- * Distributed under the terms of the MIT License.
+ * Copyright 2004, Axel Dörfler, axeld@xxxxxxxxxxxxxxxxx
+ * All rights reserved. Distributed under the terms of the MIT License.
  */
 
 


Other related posts:

  • » [haiku-commits] r38298 - haiku/trunk/src/system/boot/platform/openfirmware - andreas . faerber