Skip to content

Commit

Permalink
drm/nv50-/disp: remove dcb_outp_match call, and related variables
Browse files Browse the repository at this point in the history
Unused and irrelavant since the code move of DP training/linkcontrol interrupt

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Emil Velikov authored and Ben Skeggs committed Jul 30, 2013
1 parent 02d6929 commit 9a7046d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions drivers/gpu/drm/nouveau/core/engine/disp/sornv50.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,15 @@ int
nv50_sor_mthd(struct nouveau_object *object, u32 mthd, void *args, u32 size)
{
struct nv50_disp_priv *priv = (void *)object->engine;
struct nouveau_bios *bios = nouveau_bios(priv);
const u16 type = (mthd & NV50_DISP_SOR_MTHD_TYPE) >> 12;
const u8 head = (mthd & NV50_DISP_SOR_MTHD_HEAD) >> 3;
const u8 link = (mthd & NV50_DISP_SOR_MTHD_LINK) >> 2;
const u8 or = (mthd & NV50_DISP_SOR_MTHD_OR);
const u16 mask = (0x0100 << head) | (0x0040 << link) | (0x0001 << or);
struct dcb_output outp;
u8 ver, hdr;
u32 data;
int ret = -EINVAL;

if (size < sizeof(u32))
return -EINVAL;
data = *(u32 *)args;

if (type && !dcb_outp_match(bios, type, mask, &ver, &hdr, &outp))
return -ENODEV;

switch (mthd & ~0x3f) {
case NV50_DISP_SOR_PWR:
Expand Down

0 comments on commit 9a7046d

Please sign in to comment.