Message ID | 20230904132806.6094-4-Jonathan.Cameron@huawei.com |
---|---|
State | New, archived |
Headers | show |
Series | hw/cxl: Minor CXL emulation fixes and cleanup | expand |
On 4/9/23 15:28, Jonathan Cameron wrote: > From: Fan Ni <fan.ni@samsung.com> > > Replace the magic number 32 with CXL_RAS_ERR_HEADER_NUM for better code > readability and maintainability. Thanks :) Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> > Signed-off-by: Fan Ni <fan.ni@samsung.com> > Reviewed-by: Davidlohr Bueso <dave@stgolabs.net> > Reviewed-by: Dave Jiang <dave.jiang@intel.com> > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > --- > include/hw/cxl/cxl_device.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/hw/cxl/cxl_device.h b/include/hw/cxl/cxl_device.h index 1978730fba..fe8b46d9f7 100644 --- a/include/hw/cxl/cxl_device.h +++ b/include/hw/cxl/cxl_device.h @@ -300,7 +300,7 @@ REG64(CXL_MEM_DEV_STS, 0) typedef struct CXLError { QTAILQ_ENTRY(CXLError) node; int type; /* Error code as per FE definition */ - uint32_t header[32]; + uint32_t header[CXL_RAS_ERR_HEADER_NUM]; } CXLError; typedef QTAILQ_HEAD(, CXLError) CXLErrorList;