Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/radeon: do a posting read in r100_set_irq

To make sure the writes go through the pci bridge.

bug:
https://bugzilla.kernel.org/show_bug.cgi?id=90741

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org

+4
+4
drivers/gpu/drm/radeon/r100.c
··· 728 728 tmp |= RADEON_FP2_DETECT_MASK; 729 729 } 730 730 WREG32(RADEON_GEN_INT_CNTL, tmp); 731 + 732 + /* read back to post the write */ 733 + RREG32(RADEON_GEN_INT_CNTL); 734 + 731 735 return 0; 732 736 } 733 737