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

Commit d9806c9f authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Use sizeof(*fb) not sizeof(struct ...) in get_initial_plane_config()

parent 1b842c89
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -6586,7 +6586,7 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
	struct drm_framebuffer *fb;
	struct drm_framebuffer *fb;
	struct intel_framebuffer *intel_fb;
	struct intel_framebuffer *intel_fb;


	intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
	intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
	if (!intel_fb) {
	if (!intel_fb) {
		DRM_DEBUG_KMS("failed to alloc fb\n");
		DRM_DEBUG_KMS("failed to alloc fb\n");
		return;
		return;
@@ -7618,7 +7618,7 @@ skylake_get_initial_plane_config(struct intel_crtc *crtc,
	struct drm_framebuffer *fb;
	struct drm_framebuffer *fb;
	struct intel_framebuffer *intel_fb;
	struct intel_framebuffer *intel_fb;


	intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
	intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
	if (!intel_fb) {
	if (!intel_fb) {
		DRM_DEBUG_KMS("failed to alloc fb\n");
		DRM_DEBUG_KMS("failed to alloc fb\n");
		return;
		return;
@@ -7714,7 +7714,7 @@ ironlake_get_initial_plane_config(struct intel_crtc *crtc,
	struct drm_framebuffer *fb;
	struct drm_framebuffer *fb;
	struct intel_framebuffer *intel_fb;
	struct intel_framebuffer *intel_fb;


	intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
	intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
	if (!intel_fb) {
	if (!intel_fb) {
		DRM_DEBUG_KMS("failed to alloc fb\n");
		DRM_DEBUG_KMS("failed to alloc fb\n");
		return;
		return;