diff options
author | Alistair Francis <alistair.francis@xilinx.com> | 2016-01-21 14:15:03 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-21 14:15:03 +0000 |
commit | 8fd06719e7d37f91f1b843af4cdcdfe7eb3e4a69 (patch) | |
tree | f3a5cd51881de00c8b6a7e0b7f972dec5a1c7d63 /hw/misc | |
parent | d857c4c0235f2e891850b0d08b5a1a48d18bf8bf (diff) | |
download | qemu-8fd06719e7d37f91f1b843af4cdcdfe7eb3e4a69.tar.gz qemu-8fd06719e7d37f91f1b843af4cdcdfe7eb3e4a69.tar.bz2 qemu-8fd06719e7d37f91f1b843af4cdcdfe7eb3e4a69.zip |
ssi: Move ssi.h into a separate directory
Move the ssi.h include file into the ssi directory.
While touching the code also fix the typdef lines as
checkpatch complains.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/misc')
-rw-r--r-- | hw/misc/max111x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/max111x.c b/hw/misc/max111x.c index bef3651d6e..d619d61d34 100644 --- a/hw/misc/max111x.c +++ b/hw/misc/max111x.c @@ -10,7 +10,7 @@ * GNU GPL, version 2 or (at your option) any later version. */ -#include "hw/ssi.h" +#include "hw/ssi/ssi.h" typedef struct { SSISlave parent_obj; |