From: akpm@linux-foundation.org
To: hartleys@visionengravers.com, hsweeten@visionengravers.com,
mm-commits@vger.kernel.org
Subject: [merged] drivers-misc-atmel-sscc-use-resource_size.patch removed from -mm tree
Date: Wed, 15 Jun 2011 11:03:26 -0700 [thread overview]
Message-ID: <201106151803.p5FI3JYC010397@imap1.linux-foundation.org> (raw)
The patch titled
drivers/misc/atmel-ssc.c: use resource_size()
has been removed from the -mm tree. Its filename was
drivers-misc-atmel-sscc-use-resource_size.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: drivers/misc/atmel-ssc.c: use resource_size()
From: H Hartley Sweeten <hartleys@visionengravers.com>
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/misc/atmel-ssc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/misc/atmel-ssc.c~drivers-misc-atmel-sscc-use-resource_size drivers/misc/atmel-ssc.c
--- a/drivers/misc/atmel-ssc.c~drivers-misc-atmel-sscc-use-resource_size
+++ a/drivers/misc/atmel-ssc.c
@@ -95,7 +95,7 @@ static int __init ssc_probe(struct platf
}
ssc->pdev = pdev;
- ssc->regs = ioremap(regs->start, regs->end - regs->start + 1);
+ ssc->regs = ioremap(regs->start, resource_size(regs));
if (!ssc->regs) {
dev_dbg(&pdev->dev, "ioremap failed\n");
retval = -EINVAL;
_
Patches currently in -mm which might be from hartleys@visionengravers.com are
linux-next.patch
reply other threads:[~2011-06-15 18:03 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=201106151803.p5FI3JYC010397@imap1.linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=hartleys@visionengravers.com \
--cc=hsweeten@visionengravers.com \
--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.