Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107675
b: refs/heads/master
c: efc4918
h: refs/heads/master
i:
  107673: ae68bc2
  107671: f5bb439
v: v3
  • Loading branch information
David Miller authored and Linus Torvalds committed Aug 5, 2008
1 parent 90f3f8e commit 02f92da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f6ac436dcc4c34709bcde355f3f2254ac0a183d4
refs/heads/master: efc491814308f89d5ef6c4fe19ae4552a67d4132
4 changes: 2 additions & 2 deletions trunk/drivers/video/aty/radeon_accel.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ void radeonfb_engine_reset(struct radeonfb_info *rinfo)
INREG(HOST_PATH_CNTL);
OUTREG(HOST_PATH_CNTL, host_path_cntl);

if (rinfo->family != CHIP_FAMILY_R300 ||
rinfo->family != CHIP_FAMILY_R350 ||
if (rinfo->family != CHIP_FAMILY_R300 &&
rinfo->family != CHIP_FAMILY_R350 &&
rinfo->family != CHIP_FAMILY_RV350)
OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset);

Expand Down
5 changes: 3 additions & 2 deletions trunk/include/video/radeon.h
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,9 @@


/* DSTCACHE_CTLSTAT bit constants */
#define RB2D_DC_FLUSH (3 << 0)
#define RB2D_DC_FLUSH_ALL 0xf
#define RB2D_DC_FLUSH_2D (1 << 0)
#define RB2D_DC_FREE_2D (1 << 2)
#define RB2D_DC_FLUSH_ALL (RB2D_DC_FLUSH_2D | RB2D_DC_FREE_2D)
#define RB2D_DC_BUSY (1 << 31)


Expand Down

0 comments on commit 02f92da

Please sign in to comment.