search for: kidd

Displaying 20 results from an estimated 105 matches for "kidd".

Did you mean: kid
2019 Jan 21
18
[PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
...tion of autotools build steps - Address warnings from libtoolize - Set automake configuration options consistently in one location - Provide complete URL to bug reports for Xorg DDX nouveau driver - Fix typos Commits referenced from xf86-video-intel, xf86-video-amdgpu and xf86-video-ati Rhys Kidd (17): config: Fix typo in comment config,nv: Use xorg-macros PACKAGE_VERSION_{MAJOR,MINOR,PATCHLEVEL} config: Only check for presence of libdrm package once config: Rely upon list.h as at least xorg-server 1.8 required config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 gitignore: U...
2017 Aug 11
4
[PATCH] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged with the main GeForce GPU families. Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 822fe1d4d35e..fbe42ec0a5f1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dr...
2019 Jan 21
5
[PATCH xf86-video-nouveau 0/4] Compiler warnings series
A short series of compiler visibility warning fixes that I prepared whilst trialing improvements to xf86-video-nouveau's use of the core xorg-server utility macros. Rhys Kidd (4): wfb: Remove declaration for undefined function nouveau_wfb_init() dri2: Mark local create/destroy buffer and copy region functions as static xv: Mark local NVSetupTexturedVideo function as static xv/nv30,nv40: Mark local NV30GetSurfaceFormat and NV40GetSurfaceFormat as static...
2017 Mar 16
52
[Bug 100228] New: [NV137] unknown chipset (137000a1)
https://bugs.freedesktop.org/show_bug.cgi?id=100228 Bug ID: 100228 Summary: [NV137] unknown chipset (137000a1) Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau Assignee: nouveau
2019 Jan 21
2
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
...ng: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Wimplicit-function-declaration] ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX, ^~~~~~~~~~~~~ fbScreenInit (See xserver 706e6d9cd074da606016ed4ecff51e9c2a822087) Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- src/nv_include.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nv_include.h b/src/nv_include.h index de55570..6fdeeab 100644 --- a/src/nv_include.h +++ b/src/nv_include.h @@ -38,6 +38,7 @@ #include "dixstruct.h" #include "scrnintstr.h&qu...
2019 Jan 19
1
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
...illy, or does it really want to take > ownership of the name pointer? > vlCreateAdaptorXvMC( ) doesn't need to take over ownership of the name pointer, so yes - I guess it's being silly in one respect by not being specific about const. > > On Sat, Jan 19, 2019 at 6:30 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > > > > Fixes warning with gcc 8.2: > > > > nouveau_xv.c: In function ‘NVInitVideo’: > > nouveau_xv.c:2247:68: warning: passing argument 2 of > ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type > [-Wdis...
2019 Jan 19
2
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
...In file included from nouveau_xv.c:42: vl_hwmc.h:6:63: note: expected ‘char *’ but argument is of type ‘const char *’ XF86MCAdaptorPtr vlCreateAdaptorXvMC(ScreenPtr pScreen, char *xv_adaptor_name); ~~~~~~^~~~~~~~~~~~~~~ Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- src/nouveau_xv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau_xv.c b/src/nouveau_xv.c index a7ec21a..3258ef7 100644 --- a/src/nouveau_xv.c +++ b/src/nouveau_xv.c @@ -2244,7 +2244,7 @@ NVInitVideo(ScreenPtr pScreen) XF86MCAdapt...
2017 Aug 31
4
[RFC PATCH] drm/nouveau/therm: initial implementation of new gp1xx temperature sensor
Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- .../gpu/drm/nouveau/include/nvkm/subdev/therm.h | 1 + drivers/gpu/drm/nouveau/nvkm/engine/device/base.c | 6 +++ drivers/gpu/drm/nouveau/nvkm/subdev/therm/Kbuild | 1 + drivers/gpu/drm/nouveau/nvkm/subdev/therm/base.c | 3 +- drivers/gpu/drm/nouveau/n...
2019 Jun 02
3
[PATCH 0/2] drm/nouveau/bios/init: Improve pre-PMU devinit opcode coverage
...be able to execute common code. This series adds support to nouveau for two opcodes seen on VBIOSes prior to the locked-down PMU taking over responsibility for executing devinit scripts. Documentation for these two opcodes can be found at: https://github.com/envytools/envytools/pull/189 Rhys Kidd (2): drm/nouveau/bios/init: handle INIT_RESET_BEGUN devinit opcode drm/nouveau/bios/init: handle INIT_RESET_END devinit opcode .../gpu/drm/nouveau/nvkm/subdev/bios/init.c | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) -- 2.20.1
2017 Oct 12
1
[PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
On Sun, Oct 01, 2017 at 10:13:53AM -0400, Rhys Kidd wrote: > nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged > with the main GeForce GPU families. > > v2: > - Qualify that support is Tegra K1+ (Martin Peres) > > Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> > Reviewed-by: Martin Peres &l...
2019 Jan 21
2
[PATCH xf86-video-nouveau 1/2] xv: Avoid shadowed declaration of 'int i' in NVPutImage
...d in this scope Warning reported by gcc 8.2: nouveau_xv.c: In function ‘NVPutImage’: nouveau_xv.c:1195:7: warning: declaration of ‘i’ shadows a previous local [-Wshadow] int i = 0; ^ nouveau_xv.c:1073:11: note: shadowed declaration is here int ret, i; ^ Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- src/nouveau_xv.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nouveau_xv.c b/src/nouveau_xv.c index a7ec21a..1afe2f1 100644 --- a/src/nouveau_xv.c +++ b/src/nouveau_xv.c @@ -1192,7 +1192,6 @@ NVPutImage(ScrnInfoPtr pScrn, short src_x, short src_y, short...
2005 May 03
3
Lattice dotplot with symbols sized and colored
...however, whenever I do this I cannot get cex to then size the symbols - I get open circles that do not scale. This problem also happens when I try setting up a panel function. Many Thanks ---------------------------------------------------------------------------------------------- David M. Kidd Research Assistant School of Biology Room 210, Sir Harold Mitchell Building University of St. Andrews St. Andrews, Fife KY16 9TH UK http://www.st-and.ac.uk/~bugs/dave/dave.htm Tel: +44 (0)1334 463348 Fax: +44 (0)1334 463600
2019 Jun 02
1
[PATCH] drm/nouveau/bios: downgrade absence of tmds table to info from an error
...ble is common on Optimus setups where the NVIDIA gpu is not connected directly to any outputs. Reporting an error in this scenario is too harsh. Accordingly, change the error message to an info message. By default the error message also causes a boot flicker for these sytems. Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- drivers/gpu/drm/nouveau/nouveau_bios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index 66bf2aff4a3e..bdfadc63204a 100644 --- a/drivers/gpu/drm/nouveau/nouveau...
2006 Mar 24
2
[LLVMdev] Virtual "components" for llvm-config
On Mar 24, 2006, at 1:37 AM, Chris Lattner wrote: > On Thu, 23 Mar 2006, Eric Kidd wrote: >> backend: Either a native backend or a C backend. >> engine: Enough libs to run ExecutionEngine using either a JIT or >> interpreter. >> all: All LLVM libraries. >> >> Please feel free to suggest better names. :-) > > Instead of 'engine...
2006 Mar 17
3
[LLVMdev] Stupid '-load-vn -licm' question (LLVM 1.6)
On Mar 16, 2006, at 8:47 PM, Chris Lattner wrote: > On Thu, 16 Mar 2006, Eric Kidd wrote: >> The duplicate loads appear at the top of the %regex6 and %regex2 >> blocks below. I've tried various alias analysis implementations >> either alone or in combination. > > LICM doesn't remove common subexpressions, also -load-vn doesn't > affect...
2006 Mar 23
3
[LLVMdev] Virtual "components" for llvm-config
On Mar 23, 2006, at 1:22 AM, Reid Spencer wrote: > I dunno. You want me to actually think about this stuff? :) > > I'd have to derive the actual set of required libraries, but I'm > lacking > motivation for that task right now. OK, here's my current minimalist proposal: backend: Either a native backend or a C backend. engine: Enough libs to run ExecutionEngine
2017 Apr 12
9
[Bug 100660] New: No temperature/voltages/GPU and RAM frequency/fan speed reporting for GTX 1060 6GB
https://bugs.freedesktop.org/show_bug.cgi?id=100660 Bug ID: 100660 Summary: [nouveau] No temperature/voltages/GPU and RAM frequency/fan speed reporting for GTX 1060 6GB Product: xorg Version: git Hardware: Other OS: All Status: NEW Severity: normal Priority: medium
2018 Jan 14
4
[Bug 104621] New: Nouveau prevents booting on Pascal Gpu
https://bugs.freedesktop.org/show_bug.cgi?id=104621 Bug ID: 104621 Summary: Nouveau prevents booting on Pascal Gpu Product: Mesa Version: 17.3 Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2005 Feb 28
3
Digium Card Problems
...we did to fix this the first time if memory is correct it just decide to work after a while when loading the modules. i am now looking like an idiot as i punted this solution rather hard and now we have no board up. please if anyone can help. Regards ------------------------------------- Mark Kidd
2006 Mar 18
1
[LLVMdev] llvm-config prototype (was: Getting Started with LLVM)
On Mar 16, 2006, at 2:16 AM, Chris Lattner wrote: > On Wed, 15 Mar 2006, Eric Kidd wrote: >> OK! Would something like the following interface be a reasonable >> first approach? >> >> llvm-config (--cxxflags | --ldflags | --libs) (all | jit) >> --cxxflags: Flags to use when compiling C++ source code. >> --ldflags: Linker flags to use wh...