Bug#527062: marked as done (Some things are easy to miss...)

2009-08-24 Thread Debian Bug Tracking System
Your message dated Mon, 24 Aug 2009 20:07:37 +0200
with message-id <20090824180737.ge23...@patate.is-a-geek.org>
and subject line Re: Bug#527062: Some things are easy to miss...
has caused the Debian Bug report #527062,
regarding Some things are easy to miss...
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
527062: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527062
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Severity: minor
Tag: patch

... so I'm sending in this patch.
--- a/src/i830_bios.c	2009-05-05 14:01:32.756586034 +0200
+++ b/src/i830_bios.c	2009-05-05 14:02:42.291038188 +0200
@@ -43,8 +43,8 @@
 #define INTEL_BIOS_16(_addr)	(bios[_addr] |			\
  (bios[_addr + 1] << 8))
 #define INTEL_BIOS_32(_addr)	(bios[_addr] |			\
- (bios[_addr + 1] << 8)		\
- (bios[_addr + 2] << 16)	\
+ (bios[_addr + 1] << 8) |	\
+ (bios[_addr + 2] << 16) |	\
  (bios[_addr + 3] << 24))
 
 static void *
--- End Message ---
--- Begin Message ---
Version: 2:2.7.99.1-2

On Tue, May  5, 2009 at 14:05:28 +0200, Stijn van Drongelen wrote:

> Package: xserver-xorg-video-intel
> Severity: minor
> Tag: patch
> 
> ... so I'm sending in this patch.

Applied upstream a while ago.  Note that the patched macros aren't used
anywhere in the driver.  Thanks for your report.

commit 8d27247829fe4f55691ce68f9f4b14810fb34b32
Author: Stijn van Drongelen 
Date:   Tue May 5 16:37:06 2009 +0200

Fix typo in (unused) INTEL_BIOS_32 macro

Debian bug#527062 <http://bugs.debian.org/527062>

[jcristau: fix same typo in bios_reader.c]
Signed-off-by: Julien Cristau 


Cheers,
Julien

--- End Message ---


Bug#527062:

2009-05-05 Thread Stijn van Drongelen
tags: patch
thanks



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#527062: Some things are easy to miss...

2009-05-05 Thread Stijn van Drongelen
Package: xserver-xorg-video-intel
Severity: minor
Tag: patch

... so I'm sending in this patch.
--- a/src/i830_bios.c	2009-05-05 14:01:32.756586034 +0200
+++ b/src/i830_bios.c	2009-05-05 14:02:42.291038188 +0200
@@ -43,8 +43,8 @@
 #define INTEL_BIOS_16(_addr)	(bios[_addr] |			\
  (bios[_addr + 1] << 8))
 #define INTEL_BIOS_32(_addr)	(bios[_addr] |			\
- (bios[_addr + 1] << 8)		\
- (bios[_addr + 2] << 16)	\
+ (bios[_addr + 1] << 8) |	\
+ (bios[_addr + 2] << 16) |	\
  (bios[_addr + 3] << 24))
 
 static void *