mirror of https://github.com/xqemu/xqemu.git
display/edid: add DEFINE_EDID_PROPERTIES
Add a define for edid monitor properties. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20180925075646.25114-5-kraxel@redhat.com
This commit is contained in:
parent
97917e9e02
commit
06510b899f
|
@ -20,4 +20,8 @@ size_t qemu_edid_size(uint8_t *edid);
|
||||||
void qemu_edid_region_io(MemoryRegion *region, Object *owner,
|
void qemu_edid_region_io(MemoryRegion *region, Object *owner,
|
||||||
uint8_t *edid, size_t size);
|
uint8_t *edid, size_t size);
|
||||||
|
|
||||||
|
#define DEFINE_EDID_PROPERTIES(_state, _edid_info) \
|
||||||
|
DEFINE_PROP_UINT32("xres", _state, _edid_info.prefx, 0), \
|
||||||
|
DEFINE_PROP_UINT32("yres", _state, _edid_info.prefy, 0)
|
||||||
|
|
||||||
#endif /* EDID_H */
|
#endif /* EDID_H */
|
||||||
|
|
Loading…
Reference in New Issue