aboutsummaryrefslogtreecommitdiff
path: root/hw/rtc/pl031.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2022-02-22 13:02:07 +0100
committerMarkus Armbruster <armbru@redhat.com>2022-02-28 11:39:35 +0100
commit2beb1e5f9acb443d90fe4d366463f89d32d83bc8 (patch)
tree3039414c1a58c8778309dd16014befeb882489a7 /hw/rtc/pl031.c
parent03397528d96ff5d631fd2fa40b753548e53b5149 (diff)
rtc: Have event RTC_CHANGE identify the RTC by QOM path
Event RTC_CHANGE is "emitted when the guest changes the RTC time" (and the RTC supports the event). What if there's more than one RTC? Which one changed? New @qom-path identifies it. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <87a6ejnm80.fsf@pond.sub.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/rtc/pl031.c')
-rw-r--r--hw/rtc/pl031.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/rtc/pl031.c b/hw/rtc/pl031.c
index 60167c778f..b01d0e75d1 100644
--- a/hw/rtc/pl031.c
+++ b/hw/rtc/pl031.c
@@ -138,12 +138,13 @@ static void pl031_write(void * opaque, hwaddr offset,
switch (offset) {
case RTC_LR: {
+ g_autofree const char *qom_path = object_get_canonical_path(opaque);
struct tm tm;
s->tick_offset += value - pl031_get_count(s);
qemu_get_timedate(&tm, s->tick_offset);
- qapi_event_send_rtc_change(qemu_timedate_diff(&tm));
+ qapi_event_send_rtc_change(qemu_timedate_diff(&tm), qom_path);
pl031_set_alarm(s);
break;