[PATCH] drm/radeon: Fix format error

wuyonggang001 at 208suo.com wuyonggang001 at 208suo.com
Tue Jul 25 04:43:48 UTC 2023


Fix the error(s):

ERROR: space required before the open parenthesis '('

Signed-off-by: Yonggang Wu <wuyonggang001 at 208suo.com>
---
  drivers/gpu/drm/radeon/r300.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/radeon/r300.c 
b/drivers/gpu/drm/radeon/r300.c
index 9c1a92fa2af6..25201b9a5aae 100644
--- a/drivers/gpu/drm/radeon/r300.c
+++ b/drivers/gpu/drm/radeon/r300.c
@@ -249,7 +249,7 @@ void r300_ring_start(struct radeon_device *rdev, 
struct radeon_ring *ring)

  	/* Sub pixel 1/12 so we can have 4K rendering according to doc */
  	gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16);
-	switch(rdev->num_gb_pipes) {
+	switch (rdev->num_gb_pipes) {
  	case 2:
  		gb_tile_config |= R300_PIPE_COUNT_R300;
  		break;
@@ -638,7 +638,7 @@ static int r300_packet0_check(struct 
radeon_cs_parser *p,
  	track = (struct r100_cs_track *)p->track;
  	idx_value = radeon_get_ib_value(p, idx);

-	switch(reg) {
+	switch (reg) {
  	case AVIVO_D1MODE_VLINE_START_END:
  	case RADEON_CRTC_GUI_TRIG_VLINE:
  		r = r100_cs_packet_parse_vline(p);
@@ -1180,7 +1180,7 @@ static int r300_packet3_check(struct 
radeon_cs_parser *p,
  	ib = p->ib.ptr;
  	idx = pkt->idx + 1;
  	track = (struct r100_cs_track *)p->track;
-	switch(pkt->opcode) {
+	switch (pkt->opcode) {
  	case PACKET3_3D_LOAD_VBPNTR:
  		r = r100_packet3_load_vbpntr(p, pkt, idx);
  		if (r)


More information about the dri-devel mailing list