From: Dr. David Alan Gilbert Date: Fri, 16 Feb 2018 17:31:11 +0000 (+0000) Subject: cuda.h: Fix multiple typedef X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f0fa81767555fe2c4b5f8c9e0725a80eac1d7f56;p=qemu.git cuda.h: Fix multiple typedef RHEL6's compilers don't like the repeated typedef. Signed-off-by: Dr. David Alan Gilbert Reviewed-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Signed-off-by: Peter Maydell --- 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), \