diff options
| author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2018-02-16 17:31:11 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2018-02-16 18:38:21 +0000 |
| commit | f0fa81767555fe2c4b5f8c9e0725a80eac1d7f56 (patch) | |
| tree | 206a9e55122fcd3e2d5ee8ab0788ef4ba53cbb57 /include/hw/misc/macio/cuda.h | |
| parent | 5e8d6a12d643a38b82a0a713a77d1192117dbdca (diff) | |
| download | focaccia-qemu-f0fa81767555fe2c4b5f8c9e0725a80eac1d7f56.tar.gz focaccia-qemu-f0fa81767555fe2c4b5f8c9e0725a80eac1d7f56.zip | |
cuda.h: Fix multiple typedef
RHEL6's compilers don't like the repeated typedef. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to '')
| -rw-r--r-- | include/hw/misc/macio/cuda.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/misc/macio/cuda.h b/include/hw/misc/macio/cuda.h index 6afbdd13ee..494b709579 100644 --- a/include/hw/misc/macio/cuda.h +++ b/include/hw/misc/macio/cuda.h @@ -93,12 +93,12 @@ typedef struct CUDAState { } CUDAState; /* MOS6522 CUDA */ -typedef struct MOS6522CUDAState { +struct MOS6522CUDAState { /*< private >*/ MOS6522State parent_obj; CUDAState *cuda; -} MOS6522CUDAState; +}; #define TYPE_MOS6522_CUDA "mos6522-cuda" #define MOS6522_CUDA(obj) OBJECT_CHECK(MOS6522CUDAState, (obj), \ |