Bug 67961

Summary: radeon drm: atombios pptable.h headers not portable
Product: Drivers Reporter: Alexander von Gluck (kallisti5)
Component: Video(DRI - non Intel)Assignee: drivers_video-dri
Status: NEW ---    
Severity: enhancement CC: alan, alexdeucher, szg00000
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: mainline Subsystem:
Regression: No Bisected commit-id:

Description Alexander von Gluck 2013-12-31 03:55:20 UTC
The new pptable.h atombios headers aren't portable to older gcc versions (gcc2)

pptable.h moved to using: (which isn't portable to gcc2)

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



while atombios.h uses: (which is portable)

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


This bug is mostly to track the request to agd5f