Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10d9b4ed authored by Damien Lespiau's avatar Damien Lespiau Committed by Dave Airlie
Browse files

drm: Remove spurious ';'



One small step after another, the never-ending crusade towards better
code continues.

Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 59748616
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1083,7 +1083,7 @@ static void get_ddr3_info(struct ast_private *ast, struct ast2300_dram_param *pa
	case AST_DRAM_4Gx16:
		param->dram_config = 0x133;
		break;
	}; /* switch size */
	} /* switch size */

	switch (param->vram_size) {
	default:
@@ -1454,7 +1454,7 @@ static void get_ddr2_info(struct ast_private *ast, struct ast2300_dram_param *pa
	case AST_DRAM_4Gx16:
		param->dram_config = 0x123;
		break;
	}; /* switch size */
	} /* switch size */

	switch (param->vram_size) {
	default:
+1 −1
Original line number Diff line number Diff line
@@ -1087,7 +1087,7 @@ static void exynos_dp_dpms(struct exynos_drm_display *display, int mode)
		break;
	default:
		break;
	};
	}
	dp->dpms_mode = mode;
}

+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ static void exynos_dpi_dpms(struct exynos_drm_display *display, int mode)
		break;
	default:
		break;
	};
	}
	ctx->dpms_mode = mode;
}

+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ static int handle_dsi_error(struct mdfld_dsi_pkg_sender *sender, u32 mask)
		break;
	case BIT(14):
		/*wait for all fifo empty*/
		/*wait_for_all_fifos_empty(sender)*/;
		/*wait_for_all_fifos_empty(sender)*/
		break;
	case BIT(15):
		dev_dbg(sender->dev->dev, "No Action required\n");
+1 −1
Original line number Diff line number Diff line
@@ -842,7 +842,7 @@ nvf0_grctx_generate_mods(struct nvc0_graph_priv *priv, struct nvc0_grctx *info)
		u16 magic3 = 0x0648;
		magic[gpc][0]  = 0x10000000 | (magic0 << 16) | offset;
		magic[gpc][1]  = 0x00000000 | (magic1 << 16);
		offset += 0x0324 * (priv->tpc_nr[gpc] - 1);;
		offset += 0x0324 * (priv->tpc_nr[gpc] - 1);
		magic[gpc][2]  = 0x10000000 | (magic2 << 16) | offset;
		magic[gpc][3]  = 0x00000000 | (magic3 << 16);
		offset += 0x0324;
Loading