Skip to content

Commit

Permalink
gma500: move framebuffer file
Browse files Browse the repository at this point in the history
The framebuffer code is now clean of device specific code, and passes
checkpatch. Move it to its new name

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent 1ff6d5f commit 657839b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/gma500/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ ccflags-y += -Iinclude/drm
psb_gfx-y += gem_glue.o \
backlight.o \
power.o \
framebuffer.o \
psb_drv.o \
psb_gem.o \
psb_fb.o \
psb_2d.o \
psb_gtt.o \
psb_intel_bios.o \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include "psb_drv.h"
#include "psb_intel_reg.h"
#include "psb_intel_drv.h"
#include "psb_fb.h"
#include "framebuffer.h"

#include "mdfld_output.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*
*/

#ifndef _PSB_FB_H_
#define _PSB_FB_H_
#ifndef _FRAMEBUFFER_H_
#define _FRAMEBUFFER_H_

#include <linux/version.h>
#include <drm/drmP.h>
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gma500/mdfld_intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Eric Anholt <eric@anholt.net>
*/

#include "psb_fb.h"
#include "framebuffer.h"
#include "psb_intel_display.h"
#include "mdfld_dsi_dbi.h"
#include "mdfld_dsi_dpi.h"
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gma500/mrst_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <linux/pm_runtime.h>

#include <drm/drmP.h>
#include "psb_fb.h"
#include "framebuffer.h"
#include "psb_drv.h"
#include "psb_intel_drv.h"
#include "psb_intel_reg.h"
Expand Down
3 changes: 1 addition & 2 deletions drivers/staging/gma500/psb_2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@

#include "psb_drv.h"
#include "psb_reg.h"
#include "psb_drv.h"
#include "psb_fb.h"
#include "framebuffer.h"

/**
* psb_spank - reset the 2D engine
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gma500/psb_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <drm/drm.h>
#include "psb_drm.h"
#include "psb_drv.h"
#include "psb_fb.h"
#include "framebuffer.h"
#include "psb_reg.h"
#include "psb_intel_reg.h"
#include "psb_intel_bios.h"
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gma500/psb_intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <linux/pm_runtime.h>

#include <drm/drmP.h>
#include "psb_fb.h"
#include "framebuffer.h"
#include "psb_drv.h"
#include "psb_intel_drv.h"
#include "psb_intel_reg.h"
Expand Down

0 comments on commit 657839b

Please sign in to comment.