Switch clang-format to 6.0

Change-Id: Id96d1f47fb3d479d10d1022f1259dc030a148192
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2018-06-12 21:54:39 +02:00
parent 5b479ec5f2
commit 75ab0c6fe1
255 changed files with 564 additions and 568 deletions

View File

@@ -57,7 +57,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_EU_COUNT)
|| (gp->param == I915_PARAM_EU_COUNT)
#endif
) {
) {
if (0 == this->StoredRetValForEUVal) {
*((int *)(gp->value)) = this->StoredEUVal;
}
@@ -67,7 +67,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_SUBSLICE_TOTAL)
|| (gp->param == I915_PARAM_SUBSLICE_TOTAL)
#endif
) {
) {
if (0 == this->StoredRetValForSSVal) {
*((int *)(gp->value)) = this->StoredSSVal;
}
@@ -77,7 +77,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_CHIPSET_ID)
|| (gp->param == I915_PARAM_CHIPSET_ID)
#endif
) {
) {
if (0 == this->StoredRetValForDeviceID) {
*((int *)(gp->value)) = this->StoredDeviceID;
}
@@ -87,7 +87,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_REVISION)
|| (gp->param == I915_PARAM_REVISION)
#endif
) {
) {
if (0 == this->StoredRetValForDeviceRevID) {
*((int *)(gp->value)) = this->StoredDeviceRevID;
}
@@ -97,7 +97,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_HAS_POOLED_EU)
|| (gp->param == I915_PARAM_HAS_POOLED_EU)
#endif
) {
) {
if (0 == this->StoredRetValForPooledEU) {
*((int *)(gp->value)) = this->StoredHasPooledEU;
}
@@ -107,7 +107,7 @@ class DrmMock : public Drm {
#if defined(I915_PARAM_MIN_EU_IN_POOL)
|| (gp->param == I915_PARAM_MIN_EU_IN_POOL)
#endif
) {
) {
if (0 == this->StoredRetValForMinEUinPool) {
*((int *)(gp->value)) = this->StoredMinEUinPool;
}