powerpc: Use a macro for creating instructions from u32s
In preparation for instructions having a more complex data type start using a macro, ppc_inst(), for making an instruction out of a u32. A macro is used so that instructions can be used as initializer elements. Currently this does nothing, but it will allow for creating a data type that can represent prefixed instructions. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> [mpe: Change include guard to _ASM_POWERPC_INST_H] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Alistair Popple <alistair@popple.id.au> Link: https://lore.kernel.org/r/20200506034050.24806-7-jniethe5@gmail.com
This commit is contained in:

committed by
Michael Ellerman

parent
7c95d8893f
commit
7534625128
11
arch/powerpc/include/asm/inst.h
Normal file
11
arch/powerpc/include/asm/inst.h
Normal file
@@ -0,0 +1,11 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
#ifndef _ASM_POWERPC_INST_H
|
||||
#define _ASM_POWERPC_INST_H
|
||||
|
||||
/*
|
||||
* Instruction data type for POWER
|
||||
*/
|
||||
|
||||
#define ppc_inst(x) (x)
|
||||
|
||||
#endif /* _ASM_POWERPC_INST_H */
|
Reference in New Issue
Block a user