Re: [PATCH driver/nv 2/2] VGA/PowerPC: Implement MMIO access function to ST01 for PowerPC only

2013-08-16 Thread Egbert Eich
On Thu, Aug 15, 2013 at 04:29:00PM +0200, Mark Kettenis wrote: > > From: Egbert Eich > > Date: Tue, 13 Aug 2013 21:38:20 +0200 > > > > Access to most VGA registers is done thru MMIO. For the ST01 register > > PIO access is used to maintain timing for DACDelay(), a delay function > > internal to l

Re: [PATCH 2/2] DIX/Xi: Don't grab device buttons if no grab is registered

2013-08-16 Thread Egbert Eich
On Fri, Aug 16, 2013 at 03:37:42PM +1000, Peter Hutterer wrote: > On Thu, Aug 15, 2013 at 03:49:21PM +0200, Egbert Eich wrote: > > Core events implicietely grab buttons on button press events, for > > typo > > > Xi (ie. device) button press events this is not specified. > > it is specified, see

Re: [PATCH] DDX/PCI: Check harder for primary PCI device

2013-08-16 Thread Egbert Eich
On Thu, Aug 15, 2013 at 04:19:17PM +0200, Mark Kettenis wrote: > I think dropping this non-libpciaccess fallback codepath should be the > goal. Currently of all the systems supported by libpciaccess, only > FreeBSD and OpenBSD don't implement the "oot_vga" callback function. > And I've got the Op

[PATCH v2] DIX/Xi: Pass correct client to CheckDeviceGrabAndHintWindow()

2013-08-16 Thread Egbert Eich
If we have a client which has registered for a DeviceButton grab be sure to pass this to CheckDeviceGrabAndHintWindow(). Since the order of clients is arbitrary there is no guarantee that the last client in the list is the one that belongs to this class. Signed-off-by: Egbert Eich --- v2: Coding

Re: [PATCH xf86-video-neomagic] Unbreak shadowfb initialization with modern X servers.

2013-08-16 Thread Matt Turner
On Thu, Jun 13, 2013 at 2:38 PM, Matthieu Herrb wrote: > Signed-off-by: Matthieu Herrb > --- Thanks, this fixes https://bugs.gentoo.org/show_bug.cgi?id=434468 so I've applied it and pushed a new release (1.2.8). Matt ___ xorg-devel@lists.x.org: X.Org

[PATCH:kbproto 2/2] Drop WORD64 (Cray) support

2013-08-16 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith --- XKBstr.h |6 -- 1 file changed, 6 deletions(-) diff --git a/XKBstr.h b/XKBstr.h index 1146908..3449bda 100644 --- a/XKBstr.h +++ b/XKBstr.h @@ -31,13 +31,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. #defineXkbCharToInt(v) ((v)&0x80

[PATCH:kbproto 1/2] Add comments about sizes of dynamically allocated arrays

2013-08-16 Thread Alan Coopersmith
Many arrays have sz_* or size_* fields to list the number of entries allocated, and num_* fields to record the number of entries used. Others use num_* for the number allocated, or size based on max_key_code. And a few are just plain trying to mess with your head. (I'm looking at you XkbNamesRec