mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@suse.de>
To: linux-kernel@vger.kernel.org
Cc: Kumar Gala <galak@kernel.crashing.org>,
	Tejun Heo <htejun@gmail.com>, Jeff Garzik <jgarzik@pobox.com>,
	Greg Kroah-Hartman <gregkh@suse.de>
Subject: [PATCH 08/11] devres: support addresses greater than an unsigned long via dev_ioremap
Date: Wed, 30 Apr 2008 16:57:47 -0700	[thread overview]
Message-ID: <1209599870-22919-8-git-send-email-gregkh@suse.de> (raw)
In-Reply-To: <20080430235701.GA20981@suse.de>

From: Kumar Gala <galak@kernel.crashing.org>

Use a resource_size_t instead of unsigned long since some arch's are
capable of having ioremap deal with addresses greater than the size of a
unsigned long.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Cc: Tejun Heo <htejun@gmail.com>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
 include/linux/io.h |    4 ++--
 lib/devres.c       |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/linux/io.h b/include/linux/io.h
index e3b2dda..3a03a36 100644
--- a/include/linux/io.h
+++ b/include/linux/io.h
@@ -58,9 +58,9 @@ static inline void devm_ioport_unmap(struct device *dev, void __iomem *addr)
 }
 #endif
 
-void __iomem * devm_ioremap(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
 			    unsigned long size);
-void __iomem * devm_ioremap_nocache(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
 				    unsigned long size);
 void devm_iounmap(struct device *dev, void __iomem *addr);
 int check_signature(const volatile void __iomem *io_addr,
diff --git a/lib/devres.c b/lib/devres.c
index edc27a5..26c87c4 100644
--- a/lib/devres.c
+++ b/lib/devres.c
@@ -20,7 +20,7 @@ static int devm_ioremap_match(struct device *dev, void *res, void *match_data)
  *
  * Managed ioremap().  Map is automatically unmapped on driver detach.
  */
-void __iomem *devm_ioremap(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
 			   unsigned long size)
 {
 	void __iomem **ptr, *addr;
@@ -49,7 +49,7 @@ EXPORT_SYMBOL(devm_ioremap);
  * Managed ioremap_nocache().  Map is automatically unmapped on driver
  * detach.
  */
-void __iomem *devm_ioremap_nocache(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
 				   unsigned long size)
 {
 	void __iomem **ptr, *addr;
-- 
1.5.5.1


  parent reply	other threads:[~2008-05-01  0:01 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-30 23:57 [GIT PATCH] driver core patches against 2.6.25-git Greg KH
2008-04-30 23:57 ` [PATCH 01/11] sysfs: Disallow truncation of files in sysfs Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 02/11] klist: implement KLIST_INIT() and DEFINE_KLIST() Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 03/11] klist: implement klist_add_{after|before}() Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 04/11] driver core: warn about duplicate driver names on the same bus Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 05/11] DEBUGFS: Correct location of debugfs API documentation Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 06/11] sysfs: sysfs_update_group stub for CONFIG_SYSFS=n Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 07/11] kobject: do not copy vargs, just pass them around Greg Kroah-Hartman
2008-05-02  7:07   ` SL Baur
2008-04-30 23:57 ` Greg Kroah-Hartman [this message]
2008-04-30 23:57 ` [PATCH 09/11] pcmcia: remove pccard_sysfs_interface warnings Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 10/11] driver core: remove no longer used "struct class_device" Greg Kroah-Hartman
2008-04-30 23:57 ` [PATCH 11/11] klist: fix coding style errors in klist.h and klist.c Greg Kroah-Hartman

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=1209599870-22919-8-git-send-email-gregkh@suse.de \
    --to=gregkh@suse.de \
    --cc=galak@kernel.crashing.org \
    --cc=htejun@gmail.com \
    --cc=jgarzik@pobox.com \
    --cc=linux-kernel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®