~ubuntu-branches/ubuntu/natty/linux-backports-modules-2.6.32/natty

« back to all changes in this revision

Viewing changes to updates/nouveau/nouveau/nv04_fb.c

  • Committer: Bazaar Package Importer
  • Author(s): Andy Whitcroft, Andy Whitcroft, Tim Gardner
  • Date: 2010-03-08 08:59:41 UTC
  • Revision ID: james.westby@ubuntu.com-20100308085941-rrlpd5wtuh7m2an9
Tags: 2.6.32-16.6
[ Andy Whitcroft ]

* Lucid ABI 16
* nouveau -- make the nouveau package an optional build
* nouveau -- disable generation of nouveau
* nouveau -- drop the redundant nouveau source

[ Tim Gardner ]

* Added iwlwifi 6000 series firmware
* udev expects firmware in /lib/firmware/updates/`uname -r`

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "drmP.h"
2
 
#include "drm.h"
3
 
#include "nouveau_drv.h"
4
 
#include "nouveau_drm.h"
5
 
 
6
 
int
7
 
nv04_fb_init(struct drm_device *dev)
8
 
{
9
 
        /* This is what the DDX did for NV_ARCH_04, but a mmio-trace shows
10
 
         * nvidia reading PFB_CFG_0, then writing back its original value.
11
 
         * (which was 0x701114 in this case)
12
 
         */
13
 
 
14
 
        nv_wr32(dev, NV04_PFB_CFG0, 0x1114);
15
 
        return 0;
16
 
}
17
 
 
18
 
void
19
 
nv04_fb_takedown(struct drm_device *dev)
20
 
{
21
 
}