search for: hashm

Displaying 7 results from an estimated 7 matches for "hashm".

Did you mean: hash
2015 Feb 15
2
Only stereo sound with gtx570 over hdmi (regression)
...da_eld_v0 eld; + } base; u8 data[sizeof(nv_connector->base.eld)]; } args = { - .base.version = 1, - .base.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD, - .base.hasht = nv_encoder->dcb->hasht, - .base.hashm = nv_encoder->dcb->hashm, + .base.mthd.version = 1, + .base.mthd.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD, + .base.mthd.hasht = nv_encoder->dcb->hasht, + .base.mthd.hashm = nv_encoder->dcb->hashm, }; nv_...
2015 Feb 17
1
Only stereo sound with gtx570 over hdmi (regression)
...;                 u8 data[sizeof(nv_connector->base.eld)]; >         } args = { > -               .base.version = 1, > -               .base.method  = NV50_DISP_MTHD_V1_SOR_HDA_ELD, > -               .base.hasht   = nv_encoder->dcb->hasht, > -               .base.hashm   = nv_encoder->dcb->hashm, > +               .base.mthd.version = 1, > +               .base.mthd.method  = NV50_DISP_MTHD_V1_SOR_HDA_ELD, > +               .base.mthd.hasht   = nv_encoder->dcb->hasht, > +               .base.mthd.hashm   = nv_encoder->dcb-&g...
2015 Feb 16
0
Only stereo sound with gtx570 over hdmi (regression)
...} base; > u8 data[sizeof(nv_connector->base.eld)]; > } args = { > - .base.version = 1, > - .base.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD, > - .base.hasht = nv_encoder->dcb->hasht, > - .base.hashm = nv_encoder->dcb->hashm, > + .base.mthd.version = 1, > + .base.mthd.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD, > + .base.mthd.hasht = nv_encoder->dcb->hasht, > + .base.mthd.hashm = nv_encoder->dcb->hashm, &gt...
2014 Mar 19
1
[PATCH v2] disp/nvd0-: allow 540MHz data rate for nvd0+ devices
...[] = { 540000, 270000, 162000, 0 }; const u32 *link_bw = bw_list; u8 hdr, cnt, len; u32 data; int ret; + if (nv_device(disp)->card_type < NV_D0) + link_bw++; + /* find the bios displayport data relevant to this output */ data = nvbios_dpout_match(bios, outp->hasht, outp->hashm, &dp->version, &hdr, &cnt, &len, &dp->info); -- 1.8.3.2
2012 Dec 17
3
getdents spinning on 0x7fffffff
I was flipping through the code recently and noticed that we still have the double whammy of allocating dir entry positions with parent_dir->counter++ and that weird setting of f_pos to 2^31-1. So after enough creates (and deletes :)) in a directory we end up with an entry item whose key is past that value. f_pos gets rewound instead of being set to that magical EOF. readdir() gets stuck
2018 Jul 12
1
[PATCH] drm/nouveau: Don't forget to label dp_aux devices
...,9 @@ nouveau_connector_create(struct drm_device *dev, int index) case DRM_MODE_CONNECTOR_eDP: nv_connector->aux.dev = dev->dev; nv_connector->aux.transfer = nouveau_connector_aux_xfer; + snprintf(aux_name, sizeof(aux_name), "sor-%04x-%04x", + dcbe->hasht, dcbe->hashm); + nv_connector->aux.name = kstrdup(aux_name, GFP_KERNEL); ret = drm_dp_aux_register(&nv_connector->aux); if (ret) { NV_ERROR(drm, "failed to register aux channel\n"); diff --git a/drivers/gpu/drm/nouveau/nouveau_connector.h b/drivers/gpu/drm/nouveau/nouveau_connecto...
2014 Mar 19
0
[PATCH] disp/nvd0-: allow 540MHz data rate for nvd0+ devices
...{ 540000, 270000, 162000, 0 }; const u32 *link_bw = bw_list; u8 hdr, cnt, len; u32 data; int ret; + if (nouveau_device(disp)->card_type < NV_D0) + link_bw++; + /* find the bios displayport data relevant to this output */ data = nvbios_dpout_match(bios, outp->hasht, outp->hashm, &dp->version, &hdr, &cnt, &len, &dp->info); -- 1.8.3.2