From f9ea52db9aa0d6a439bc1ee408814784bfd71927 Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Fri, 28 Feb 2014 17:13:57 +0100 Subject: [PATCH] hw: rename cpu.h in processor_driver.h ref #1083 --- base-hw/src/core/arndale/platform_support.cc | 2 +- base-hw/src/core/arndale/{cpu.h => processor_driver.h} | 0 base-hw/src/core/imx31/platform_support.cc | 2 +- base-hw/src/core/imx31/{cpu.h => processor_driver.h} | 0 base-hw/src/core/imx53/no_trustzone/platform_support.cc | 2 +- base-hw/src/core/imx53/{cpu.h => processor_driver.h} | 0 base-hw/src/core/imx53/trustzone/platform_support.cc | 2 +- base-hw/src/core/imx53/trustzone/trustzone.cc | 2 +- base-hw/src/core/kernel/irq.cc | 2 +- base-hw/src/core/kernel/pd.h | 2 +- base-hw/src/core/kernel/thread.h | 2 +- base-hw/src/core/kernel/vm.h | 2 +- base-hw/src/core/odroid_xu/platform_support.cc | 2 +- base-hw/src/core/odroid_xu/{cpu.h => processor_driver.h} | 0 base-hw/src/core/panda/platform_support.cc | 2 +- base-hw/src/core/panda/{cpu.h => processor_driver.h} | 0 base-hw/src/core/pbxa9/platform_support.cc | 2 +- base-hw/src/core/pbxa9/{cpu.h => processor_driver.h} | 0 base-hw/src/core/pic/cortex_a9.h | 2 +- base-hw/src/core/pic/vea9x4_trustzone.h | 2 +- base-hw/src/core/rpi/platform_support.cc | 2 +- base-hw/src/core/rpi/{cpu.h => processor_driver.h} | 0 base-hw/src/core/vea9x4/no_trustzone/platform_support.cc | 2 +- base-hw/src/core/vea9x4/{cpu.h => processor_driver.h} | 0 base-hw/src/core/vea9x4/trustzone/platform_support.cc | 2 +- base-hw/src/core/vea9x4/trustzone/trustzone.cc | 2 +- 26 files changed, 18 insertions(+), 18 deletions(-) rename base-hw/src/core/arndale/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/imx31/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/imx53/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/odroid_xu/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/panda/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/pbxa9/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/rpi/{cpu.h => processor_driver.h} (100%) rename base-hw/src/core/vea9x4/{cpu.h => processor_driver.h} (100%) diff --git a/base-hw/src/core/arndale/platform_support.cc b/base-hw/src/core/arndale/platform_support.cc index 0f329fafd..403985a36 100644 --- a/base-hw/src/core/arndale/platform_support.cc +++ b/base-hw/src/core/arndale/platform_support.cc @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include diff --git a/base-hw/src/core/arndale/cpu.h b/base-hw/src/core/arndale/processor_driver.h similarity index 100% rename from base-hw/src/core/arndale/cpu.h rename to base-hw/src/core/arndale/processor_driver.h diff --git a/base-hw/src/core/imx31/platform_support.cc b/base-hw/src/core/imx31/platform_support.cc index eced4c815..1dc009c83 100644 --- a/base-hw/src/core/imx31/platform_support.cc +++ b/base-hw/src/core/imx31/platform_support.cc @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include using namespace Genode; diff --git a/base-hw/src/core/imx31/cpu.h b/base-hw/src/core/imx31/processor_driver.h similarity index 100% rename from base-hw/src/core/imx31/cpu.h rename to base-hw/src/core/imx31/processor_driver.h diff --git a/base-hw/src/core/imx53/no_trustzone/platform_support.cc b/base-hw/src/core/imx53/no_trustzone/platform_support.cc index 65988ed45..0b83729a1 100644 --- a/base-hw/src/core/imx53/no_trustzone/platform_support.cc +++ b/base-hw/src/core/imx53/no_trustzone/platform_support.cc @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include using namespace Genode; diff --git a/base-hw/src/core/imx53/cpu.h b/base-hw/src/core/imx53/processor_driver.h similarity index 100% rename from base-hw/src/core/imx53/cpu.h rename to base-hw/src/core/imx53/processor_driver.h diff --git a/base-hw/src/core/imx53/trustzone/platform_support.cc b/base-hw/src/core/imx53/trustzone/platform_support.cc index 31ac459df..bee1d724f 100644 --- a/base-hw/src/core/imx53/trustzone/platform_support.cc +++ b/base-hw/src/core/imx53/trustzone/platform_support.cc @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include using namespace Genode; diff --git a/base-hw/src/core/imx53/trustzone/trustzone.cc b/base-hw/src/core/imx53/trustzone/trustzone.cc index a54f46ce6..76607fb29 100644 --- a/base-hw/src/core/imx53/trustzone/trustzone.cc +++ b/base-hw/src/core/imx53/trustzone/trustzone.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include #include #include diff --git a/base-hw/src/core/kernel/irq.cc b/base-hw/src/core/kernel/irq.cc index 142747356..223d8c291 100644 --- a/base-hw/src/core/kernel/irq.cc +++ b/base-hw/src/core/kernel/irq.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include using namespace Kernel; diff --git a/base-hw/src/core/kernel/pd.h b/base-hw/src/core/kernel/pd.h index 698f66a71..b210450e7 100644 --- a/base-hw/src/core/kernel/pd.h +++ b/base-hw/src/core/kernel/pd.h @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include /* structure of the mode transition */ diff --git a/base-hw/src/core/kernel/thread.h b/base-hw/src/core/kernel/thread.h index 5e948c0d5..25d9218af 100644 --- a/base-hw/src/core/kernel/thread.h +++ b/base-hw/src/core/kernel/thread.h @@ -20,7 +20,7 @@ #include #include #include -#include +#include namespace Kernel { diff --git a/base-hw/src/core/kernel/vm.h b/base-hw/src/core/kernel/vm.h index 390680963..a12686ccf 100644 --- a/base-hw/src/core/kernel/vm.h +++ b/base-hw/src/core/kernel/vm.h @@ -23,7 +23,7 @@ #include #include #include -#include +#include namespace Kernel { diff --git a/base-hw/src/core/odroid_xu/platform_support.cc b/base-hw/src/core/odroid_xu/platform_support.cc index 6ebd19fd1..8006706d4 100644 --- a/base-hw/src/core/odroid_xu/platform_support.cc +++ b/base-hw/src/core/odroid_xu/platform_support.cc @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include diff --git a/base-hw/src/core/odroid_xu/cpu.h b/base-hw/src/core/odroid_xu/processor_driver.h similarity index 100% rename from base-hw/src/core/odroid_xu/cpu.h rename to base-hw/src/core/odroid_xu/processor_driver.h diff --git a/base-hw/src/core/panda/platform_support.cc b/base-hw/src/core/panda/platform_support.cc index b0ce08a33..3c1c53da8 100644 --- a/base-hw/src/core/panda/platform_support.cc +++ b/base-hw/src/core/panda/platform_support.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include #include #include diff --git a/base-hw/src/core/panda/cpu.h b/base-hw/src/core/panda/processor_driver.h similarity index 100% rename from base-hw/src/core/panda/cpu.h rename to base-hw/src/core/panda/processor_driver.h diff --git a/base-hw/src/core/pbxa9/platform_support.cc b/base-hw/src/core/pbxa9/platform_support.cc index 6b6c9bed2..e56f48188 100644 --- a/base-hw/src/core/pbxa9/platform_support.cc +++ b/base-hw/src/core/pbxa9/platform_support.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include #include #include diff --git a/base-hw/src/core/pbxa9/cpu.h b/base-hw/src/core/pbxa9/processor_driver.h similarity index 100% rename from base-hw/src/core/pbxa9/cpu.h rename to base-hw/src/core/pbxa9/processor_driver.h diff --git a/base-hw/src/core/pic/cortex_a9.h b/base-hw/src/core/pic/cortex_a9.h index 0f932f7ad..0de95797f 100644 --- a/base-hw/src/core/pic/cortex_a9.h +++ b/base-hw/src/core/pic/cortex_a9.h @@ -16,7 +16,7 @@ /* core includes */ #include -#include +#include namespace Cortex_a9 { diff --git a/base-hw/src/core/pic/vea9x4_trustzone.h b/base-hw/src/core/pic/vea9x4_trustzone.h index c75be962b..743a3354a 100644 --- a/base-hw/src/core/pic/vea9x4_trustzone.h +++ b/base-hw/src/core/pic/vea9x4_trustzone.h @@ -16,7 +16,7 @@ /* core includes */ #include -#include +#include namespace Vea9x4_trustzone { diff --git a/base-hw/src/core/rpi/platform_support.cc b/base-hw/src/core/rpi/platform_support.cc index 98edc91f8..ec0dfdba5 100644 --- a/base-hw/src/core/rpi/platform_support.cc +++ b/base-hw/src/core/rpi/platform_support.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include #include using namespace Genode; diff --git a/base-hw/src/core/rpi/cpu.h b/base-hw/src/core/rpi/processor_driver.h similarity index 100% rename from base-hw/src/core/rpi/cpu.h rename to base-hw/src/core/rpi/processor_driver.h diff --git a/base-hw/src/core/vea9x4/no_trustzone/platform_support.cc b/base-hw/src/core/vea9x4/no_trustzone/platform_support.cc index 14142b64a..4336d397f 100644 --- a/base-hw/src/core/vea9x4/no_trustzone/platform_support.cc +++ b/base-hw/src/core/vea9x4/no_trustzone/platform_support.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include #include #include diff --git a/base-hw/src/core/vea9x4/cpu.h b/base-hw/src/core/vea9x4/processor_driver.h similarity index 100% rename from base-hw/src/core/vea9x4/cpu.h rename to base-hw/src/core/vea9x4/processor_driver.h diff --git a/base-hw/src/core/vea9x4/trustzone/platform_support.cc b/base-hw/src/core/vea9x4/trustzone/platform_support.cc index 1cfd9a093..c62fdf77e 100644 --- a/base-hw/src/core/vea9x4/trustzone/platform_support.cc +++ b/base-hw/src/core/vea9x4/trustzone/platform_support.cc @@ -15,7 +15,7 @@ /* core includes */ #include -#include +#include #include #include #include diff --git a/base-hw/src/core/vea9x4/trustzone/trustzone.cc b/base-hw/src/core/vea9x4/trustzone/trustzone.cc index 112423aa2..a79a0af9f 100644 --- a/base-hw/src/core/vea9x4/trustzone/trustzone.cc +++ b/base-hw/src/core/vea9x4/trustzone/trustzone.cc @@ -14,7 +14,7 @@ /* core includes */ #include #include -#include +#include /* monitor exception vector address */ extern int _mon_kernel_entry;