diff options
author | Tony Luck <tony.luck@intel.com> | 2007-05-10 09:39:41 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-05-10 09:39:41 -0700 |
commit | 34ef30ca4a0b7f8c0efc97a4a1355a4c4300c2ff (patch) | |
tree | 03b180d602746ce732121d2878596bb1e8af7448 /arch/ia64 | |
parent | 8ee4dc393b90c4bce313ef1044d068b9e68e1b5f (diff) |
[IA64] Fix warnings resulting from type-checking in dev_dbg()
Lots of places where we passed a "struct pci_device *" rather than
a "struct device *". One place where we used a "%s" in the format,
but forgot to provide an argument.
Acked-by: John Keller <jpk@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/sn/kernel/io_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/sn/kernel/io_common.c b/arch/ia64/sn/kernel/io_common.c index d48bcd83253c..7ed72d3faf73 100644 --- a/arch/ia64/sn/kernel/io_common.c +++ b/arch/ia64/sn/kernel/io_common.c @@ -364,7 +364,7 @@ void sn_bus_store_sysdata(struct pci_dev *dev) element = kzalloc(sizeof(struct sysdata_el), GFP_KERNEL); if (!element) { - dev_dbg(dev, "%s: out of memory!\n", __FUNCTION__); + dev_dbg(&dev->dev, "%s: out of memory!\n", __FUNCTION__); return; } element->sysdata = SN_PCIDEV_INFO(dev); |