0a8ec2ed07
The gma500 driver stores the console framebuffer in struct psb_fbdev. Moving it into struct drm_fb_helper will allow for removal of struct psb_fbdev. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Signed-off-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191122100545.16812-6-tzimmermann@suse.de
24 lines
415 B
C
24 lines
415 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2008-2011, Intel Corporation
|
|
*
|
|
* Authors:
|
|
* Eric Anholt <eric@anholt.net>
|
|
*/
|
|
|
|
#ifndef _FRAMEBUFFER_H_
|
|
#define _FRAMEBUFFER_H_
|
|
|
|
#include <drm/drm_fb_helper.h>
|
|
|
|
#include "psb_drv.h"
|
|
|
|
struct psb_fbdev {
|
|
struct drm_fb_helper psb_fb_helper; /* must be first */
|
|
};
|
|
|
|
extern int gma_connector_clones(struct drm_device *dev, int type_mask);
|
|
|
|
#endif
|
|
|