diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-08-27 12:36:01 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-08-30 16:31:10 -0400 |
commit | fb93df1c2d8b3b1fb16d6ee9e32554e0c038815d (patch) | |
tree | 2a5e0d1342df685ec93851d3b6d683058a2ed9a3 /drivers/gpu/drm/radeon/r600d.h | |
parent | acf88deb8ddbb73acd1c3fa32fde51af9153227f (diff) | |
download | lwn-fb93df1c2d8b3b1fb16d6ee9e32554e0c038815d.tar.gz lwn-fb93df1c2d8b3b1fb16d6ee9e32554e0c038815d.zip |
drm/radeon: fix handling of variable sized arrays for router objects
The table has the following format:
typedef struct _ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT //usSrcDstTableOffset pointing to this structure
{
UCHAR ucNumberOfSrc;
USHORT usSrcObjectID[1];
UCHAR ucNumberOfDst;
USHORT usDstObjectID[1];
}ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT;
usSrcObjectID[] and usDstObjectID[] are variably sized, so we
can't access them directly. Use pointers and update the offset
appropriately when accessing the Dst members.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/radeon/r600d.h')
0 files changed, 0 insertions, 0 deletions