mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Move QOM typedefs and add missing includes
Some typedefs and macros are defined after the type check macros. This makes it difficult to automatically replace their definitions with OBJECT_DECLARE_TYPE. Patch generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=QOMStructTypedefSplit $(git grep -l '' -- '*.[ch]') which will split "typdef struct { ... } TypedefName" declarations. Followed by: $ ./scripts/codeconverter/converter.py -i --pattern=MoveSymbols \ $(git grep -l '' -- '*.[ch]') which will: - move the typedefs and #defines above the type check macros - add missing #include "qom/object.h" lines if necessary Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-9-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-10-ehabkost@redhat.com> Message-Id: <20200831210740.126168-11-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
1c8eef0227
commit
db1015e92e
796 changed files with 3378 additions and 1823 deletions
|
@ -24,10 +24,13 @@
|
|||
|
||||
#include "qemu/timer.h"
|
||||
#include "hw/misc/aspeed_scu.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_ASPEED_TIMER "aspeed.timer"
|
||||
typedef struct AspeedTimerClass AspeedTimerClass;
|
||||
typedef struct AspeedTimerCtrlState AspeedTimerCtrlState;
|
||||
#define ASPEED_TIMER(obj) \
|
||||
OBJECT_CHECK(AspeedTimerCtrlState, (obj), TYPE_ASPEED_TIMER)
|
||||
#define TYPE_ASPEED_TIMER "aspeed.timer"
|
||||
#define TYPE_ASPEED_2400_TIMER TYPE_ASPEED_TIMER "-ast2400"
|
||||
#define TYPE_ASPEED_2500_TIMER TYPE_ASPEED_TIMER "-ast2500"
|
||||
#define TYPE_ASPEED_2600_TIMER TYPE_ASPEED_TIMER "-ast2600"
|
||||
|
@ -50,7 +53,7 @@ typedef struct AspeedTimer {
|
|||
uint64_t start;
|
||||
} AspeedTimer;
|
||||
|
||||
typedef struct AspeedTimerCtrlState {
|
||||
struct AspeedTimerCtrlState {
|
||||
/*< private >*/
|
||||
SysBusDevice parent;
|
||||
|
||||
|
@ -64,18 +67,18 @@ typedef struct AspeedTimerCtrlState {
|
|||
AspeedTimer timers[ASPEED_TIMER_NR_TIMERS];
|
||||
|
||||
AspeedSCUState *scu;
|
||||
} AspeedTimerCtrlState;
|
||||
};
|
||||
|
||||
#define ASPEED_TIMER_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(AspeedTimerClass, (klass), TYPE_ASPEED_TIMER)
|
||||
#define ASPEED_TIMER_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(AspeedTimerClass, (obj), TYPE_ASPEED_TIMER)
|
||||
|
||||
typedef struct AspeedTimerClass {
|
||||
struct AspeedTimerClass {
|
||||
SysBusDeviceClass parent_class;
|
||||
|
||||
uint64_t (*read)(AspeedTimerCtrlState *s, hwaddr offset);
|
||||
void (*write)(AspeedTimerCtrlState *s, hwaddr offset, uint64_t value);
|
||||
} AspeedTimerClass;
|
||||
};
|
||||
|
||||
#endif /* ASPEED_TIMER_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue