]> git.baikalelectronics.ru Git - kernel.git/commit
drm/radeon: fix pptable.h portability
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 2 Jan 2014 22:55:35 +0000 (17:55 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 3 Jan 2014 16:34:21 +0000 (11:34 -0500)
commita7bef3a4590b366735c73f31abc2c6d0d3740d9b
tree2857a45e2e3e233e371108bf7a54ee887686b287
parent761e9b29861e588949949ae55d149c489606e09c
drm/radeon: fix pptable.h portability

The following isn't compatible with gcc 2.x:

pragma pack(push, 1)
...
pragma pack(pop)

replace with:

pragma pack(1)
...
pragma pack()

bug:
https://bugzilla.kernel.org/show_bug.cgi?id=67961

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/pptable.h