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

Commit 2b0a3c40 authored by Fabian Frederick's avatar Fabian Frederick Committed by Dave Airlie
Browse files

drm: remove unnecessary sizeof(u8)



sizeof(u8) is always 1.

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent aeb24cc0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -905,7 +905,7 @@ static int r128_cce_dispatch_write_span(struct drm_device *dev,
	if (IS_ERR(buffer))
		return PTR_ERR(buffer);

	mask_size = depth->n * sizeof(u8);
	mask_size = depth->n;
	if (depth->mask) {
		mask = memdup_user(depth->mask, mask_size);
		if (IS_ERR(mask)) {
@@ -1010,7 +1010,7 @@ static int r128_cce_dispatch_write_pixels(struct drm_device *dev,
	}

	if (depth->mask) {
		mask_size = depth->n * sizeof(u8);
		mask_size = depth->n;
		mask = memdup_user(depth->mask, mask_size);
		if (IS_ERR(mask)) {
			kfree(x);