diff options
author | Tong Ho <tong.ho@amd.com> | 2023-10-02 22:21:39 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-10-19 14:32:12 +0100 |
commit | b65b4b7ae3c873dc2f8f4ce65ea5cedc45be3938 (patch) | |
tree | 093068909782abc194cd12d6ecda336dacdef34a /include/hw/nvram | |
parent | 51244b5911483d12a4cde26b1facd19c8600751d (diff) | |
download | qemu-b65b4b7ae3c873dc2f8f4ce65ea5cedc45be3938.zip qemu-b65b4b7ae3c873dc2f8f4ce65ea5cedc45be3938.tar.gz qemu-b65b4b7ae3c873dc2f8f4ce65ea5cedc45be3938.tar.bz2 |
xlnx-bbram: hw/nvram: Use dot in device type name
This replaces the comma (,) to dot (.) in the device type name
so the name can be used with the 'driver=' command line option.
Signed-off-by: Tong Ho <tong.ho@amd.com>
Reviewed-by: Francisco Iglesias <frasse.iglesias@gmail.com>
Message-id: 20231003052139.199665-1-tong.ho@amd.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/nvram')
-rw-r--r-- | include/hw/nvram/xlnx-bbram.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/nvram/xlnx-bbram.h b/include/hw/nvram/xlnx-bbram.h index 87d59ef..6fc13f8 100644 --- a/include/hw/nvram/xlnx-bbram.h +++ b/include/hw/nvram/xlnx-bbram.h @@ -34,7 +34,7 @@ #define RMAX_XLNX_BBRAM ((0x4c / 4) + 1) -#define TYPE_XLNX_BBRAM "xlnx,bbram-ctrl" +#define TYPE_XLNX_BBRAM "xlnx.bbram-ctrl" OBJECT_DECLARE_SIMPLE_TYPE(XlnxBBRam, XLNX_BBRAM); struct XlnxBBRam { |