git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea31bf6
)
drm/radeon: fix pptable.h portability
author
Alex Deucher
<alexander.deucher@amd.com>
Thu, 2 Jan 2014 22:55:35 +0000
(17:55 -0500)
committer
Alex Deucher
<alexander.deucher@amd.com>
Fri, 3 Jan 2014 16:34:21 +0000
(11:34 -0500)
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>
No differences found