Skip to content

Commit

Permalink
Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/airlied/drm-2.6
  • Loading branch information
Linus Torvalds committed Nov 24, 2005
2 parents 569cfaa + 7655f49 commit 33bc227
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/char/drm/drm_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ unsigned long drm_alloc_pages(int order, int area)
unsigned long addr;
unsigned int sz;

address = __get_free_pages(GFP_KERNEL, order);
address = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
if (!address)
return 0;

Expand Down
2 changes: 1 addition & 1 deletion drivers/char/drm/drm_memory_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ unsigned long DRM(alloc_pages) (int order, int area) {
}
spin_unlock(&DRM(mem_lock));

address = __get_free_pages(GFP_KERNEL, order);
address = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
if (!address) {
spin_lock(&DRM(mem_lock));
++DRM(mem_stats)[area].fail_count;
Expand Down
2 changes: 1 addition & 1 deletion drivers/char/drm/mga_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static int mga_driver_device_is_agp(drm_device_t * dev)
* device.
*/

if ((pdev->device == 0x0525)
if ((pdev->device == 0x0525) && pdev->bus->self
&& (pdev->bus->self->vendor == 0x3388)
&& (pdev->bus->self->device == 0x0021)) {
return 0;
Expand Down
3 changes: 1 addition & 2 deletions drivers/char/drm/radeon_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,6 @@ typedef struct drm_radeon_private {

int microcode_version;

int is_pci;

struct {
u32 boxes;
int freelist_timeouts;
Expand Down Expand Up @@ -275,6 +273,7 @@ typedef struct drm_radeon_private {

/* starting from here on, data is preserved accross an open */
uint32_t flags; /* see radeon_chip_flags */
int is_pci;
} drm_radeon_private_t;

typedef struct drm_radeon_buf_priv {
Expand Down

0 comments on commit 33bc227

Please sign in to comment.