From: akpm@linux-foundation.org
To: Geert.Uytterhoeven@sonycom.com, adaplas@pol.net,
mm-commits@vger.kernel.org
Subject: - ps3fb-make-frame-buffer-offsets-unsigned-int.patch removed from -mm tree
Date: Wed, 06 Feb 2008 16:29:06 -0800 [thread overview]
Message-ID: <200802070028.m170SlcN007206@imap1.linux-foundation.org> (raw)
The patch titled
ps3fb: make frame buffer offsets unsigned int
has been removed from the -mm tree. Its filename was
ps3fb-make-frame-buffer-offsets-unsigned-int.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: ps3fb: make frame buffer offsets unsigned int
From: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Frame buffer offsets don't have to be `unsigned long', `unsigned int' is
sufficient
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/video/ps3fb.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff -puN drivers/video/ps3fb.c~ps3fb-make-frame-buffer-offsets-unsigned-int drivers/video/ps3fb.c
--- a/drivers/video/ps3fb.c~ps3fb-make-frame-buffer-offsets-unsigned-int
+++ a/drivers/video/ps3fb.c
@@ -140,9 +140,9 @@ struct ps3fb_par {
unsigned int ddr_line_length;
unsigned int ddr_frame_size;
unsigned int xdr_frame_size;
- unsigned long full_offset; /* start of fullscreen DDR fb */
- unsigned long fb_offset; /* start of actual DDR fb */
- unsigned long pan_offset;
+ unsigned int full_offset; /* start of fullscreen DDR fb */
+ unsigned int fb_offset; /* start of actual DDR fb */
+ unsigned int pan_offset;
};
@@ -512,8 +512,7 @@ static int ps3fb_set_par(struct fb_info
{
struct ps3fb_par *par = info->par;
unsigned int mode, ddr_line_length, xdr_line_length, lines, maxlines;
- unsigned int ddr_xoff, ddr_yoff;
- unsigned long offset;
+ unsigned int ddr_xoff, ddr_yoff, offset;
const struct fb_videomode *vmode;
u64 dst;
_
Patches currently in -mm which might be from Geert.Uytterhoeven@sonycom.com are
origin.patch
git-scsi-misc.patch
reply other threads:[~2008-02-07 0:43 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200802070028.m170SlcN007206@imap1.linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=Geert.Uytterhoeven@sonycom.com \
--cc=adaplas@pol.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.