diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2007-10-18 03:04:00 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-10-18 03:59:08 -0400 |
commit | e9a03990d90ac5006f37f3ff7a6b87966d208697 (patch) | |
tree | 32eb68c78629c8c9e98bf11f66fe97462663986b /drivers/parisc | |
parent | 7819994312fd4c3c04456abb6a64c810ecde3db4 (diff) |
[PARISC] Clean up a resource_size_t warning in sba_iommu
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'drivers/parisc')
-rw-r--r-- | drivers/parisc/sba_iommu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c index d044c48323e6..e5c323936eae 100644 --- a/drivers/parisc/sba_iommu.c +++ b/drivers/parisc/sba_iommu.c | |||
@@ -1909,8 +1909,8 @@ sba_driver_callback(struct parisc_device *dev) | |||
1909 | global_ioc_cnt *= 2; | 1909 | global_ioc_cnt *= 2; |
1910 | } | 1910 | } |
1911 | 1911 | ||
1912 | printk(KERN_INFO "%s found %s at 0x%lx\n", | 1912 | printk(KERN_INFO "%s found %s at 0x%llx\n", |
1913 | MODULE_NAME, version, dev->hpa.start); | 1913 | MODULE_NAME, version, (unsigned long long)dev->hpa.start); |
1914 | 1914 | ||
1915 | sba_dev = kzalloc(sizeof(struct sba_device), GFP_KERNEL); | 1915 | sba_dev = kzalloc(sizeof(struct sba_device), GFP_KERNEL); |
1916 | if (!sba_dev) { | 1916 | if (!sba_dev) { |