selftests/powerpc: Move shared headers into new include dir

There are some functions, especially register related, which can
be shared across multiple selftests/powerpc test directories.

This patch creates a new include directory to store those shared
files, so that the file layout becomes more neat.

Signed-off-by: Simon Guo <wei.guo.simon@gmail.com>
[mpe: Reworked to move the headers only]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Simon Guo
2016-09-30 10:32:51 +08:00
committed by Michael Ellerman
parent efe71a67b5
commit 15ec3997aa
19 changed files with 37 additions and 34 deletions

View File

@@ -7,11 +7,11 @@
* 2 of the License, or (at your option) any later version.
*/
#include "../basic_asm.h"
#include "../gpr_asm.h"
#include "../fpu_asm.h"
#include "../vmx_asm.h"
#include "../vsx_asm.h"
#include "basic_asm.h"
#include "gpr_asm.h"
#include "fpu_asm.h"
#include "vmx_asm.h"
#include "vsx_asm.h"
/*
* Large caveat here being that the caller cannot expect the

View File

@@ -10,7 +10,7 @@
#include <asm/cputable.h>
#include <stdbool.h>
#include "../utils.h"
#include "utils.h"
static inline bool have_htm(void)
{