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

Commit 04ad327f authored by Kulikov Vasiliy's avatar Kulikov Vasiliy Committed by Jiri Kosina
Browse files

drm: i915: use ARRAY_SIZE



Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).

Signed-off-by: default avatarKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 3c581411
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -392,13 +392,13 @@ static void intel_sdvo_debug_write(struct intel_encoder *intel_encoder, u8 cmd,
		DRM_LOG_KMS("%02X ", ((u8 *)args)[i]);
	for (; i < 8; i++)
		DRM_LOG_KMS("   ");
	for (i = 0; i < sizeof(sdvo_cmd_names) / sizeof(sdvo_cmd_names[0]); i++) {
	for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
		if (cmd == sdvo_cmd_names[i].cmd) {
			DRM_LOG_KMS("(%s)", sdvo_cmd_names[i].name);
			break;
		}
	}
	if (i == sizeof(sdvo_cmd_names)/ sizeof(sdvo_cmd_names[0]))
	if (i == ARRAY_SIZE(sdvo_cmd_names))
		DRM_LOG_KMS("(%02X)", cmd);
	DRM_LOG_KMS("\n");
}
+1 −1
Original line number Diff line number Diff line
@@ -1424,7 +1424,7 @@ intel_tv_get_modes(struct drm_connector *connector)
	int j, count = 0;
	u64 tmp;

	for (j = 0; j < sizeof(input_res_table) / sizeof(input_res_table[0]);
	for (j = 0; j < ARRAY_SIZE(input_res_table);
	     j++) {
		struct input_res *input = &input_res_table[j];
		unsigned int hactive_s = input->w;