Author: dim
Date: Sat Apr 25 13:10:17 2020
New Revision: 360303
URL: https://svnweb.freebsd.org/changeset/base/360303
Log:
Fix misleading indentation in sys/dev/drm2/radeon/evergreen.c
This fixes the following warning from recent versions of clang and gcc:
sys/dev/drm2/radeon/evergreen.c:554:4: error: misleading indentation;
statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
Direct commit to stable/{10,11,12}, since this driver has been removed
from FreeBSD 13.
Modified:
stable/12/sys/dev/drm2/radeon/evergreen.c
Changes in other areas also in this revision:
Modified:
stable/10/sys/dev/drm2/radeon/evergreen.c
stable/11/sys/dev/drm2/radeon/evergreen.c
Modified: stable/12/sys/dev/drm2/radeon/evergreen.c
==============================================================================
--- stable/12/sys/dev/drm2/radeon/evergreen.c Sat Apr 25 13:03:37 2020
(r360302)
+++ stable/12/sys/dev/drm2/radeon/evergreen.c Sat Apr 25 13:10:17 2020
(r360303)
@@ -551,7 +551,7 @@ bool evergreen_hpd_sense(struct radeon_device *rdev, e
case RADEON_HPD_6:
if (RREG32(DC_HPD6_INT_STATUS) & DC_HPDx_SENSE)
connected = true;
- break;
+ break;
default:
break;
}
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"