diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-13 12:42:14 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-15 16:58:46 +0100 |
commit | 5e37bc4997c32a1c9a6621a060462c84df9f1b8f (patch) | |
tree | 117f3dab4919e29e8fe865aaaf0cd98c304a692e /include/hw | |
parent | 3c5f86a22686ef475a8259c0d8ee714f61c770c9 (diff) |
hw/dma: Pass parent object to i8257_dma_init()
Set I8257 instances parent (migration isn't affected).
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240213114426.87836-1-philmd@linaro.org>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/dma/i8257.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/dma/i8257.h b/include/hw/dma/i8257.h index f652345d65..4342e4a91e 100644 --- a/include/hw/dma/i8257.h +++ b/include/hw/dma/i8257.h @@ -45,6 +45,6 @@ struct I8257State { PortioList portio_pageh; }; -void i8257_dma_init(ISABus *bus, bool high_page_enable); +void i8257_dma_init(Object *parent, ISABus *bus, bool high_page_enable); #endif |