~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to drivers/staging/gma500/psb_fb.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
#include "psb_drv.h"
30
30
 
31
 
/*IMG Headers*/
32
 
/*#include "servicesint.h"*/
33
 
 
34
31
struct psb_framebuffer {
35
32
        struct drm_framebuffer base;
36
33
        struct address_space *addr_space;
37
 
        struct ttm_buffer_object *bo;
38
 
        struct fb_info * fbdev;
39
 
        /* struct ttm_bo_kmap_obj kmap; */
40
 
        void *pvrBO;    /* FIXME: sort this out */
41
 
        void * hKernelMemInfo;
42
 
        uint32_t size;
43
 
        uint32_t offset;
 
34
        struct fb_info *fbdev;
 
35
        struct gtt_range *gtt;
44
36
};
45
37
 
46
38
struct psb_fbdev {
47
39
        struct drm_fb_helper psb_fb_helper;
48
 
        struct psb_framebuffer * pfb;
 
40
        struct psb_framebuffer *pfb;
49
41
};
50
42
 
51
43
 
52
44
#define to_psb_fb(x) container_of(x, struct psb_framebuffer, base)
53
45
 
54
 
 
55
46
extern int psb_intel_connector_clones(struct drm_device *dev, int type_mask);
56
47
 
57
 
 
58
48
#endif
59
49