diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-15 09:28:16 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-15 09:28:16 -0700 |
commit | 7db9cbb3748c46b80e5c99ffa91945b8dd4ed5e5 (patch) | |
tree | da77cbf20ba01168aa48c14a71ef8ed8d8426e78 /drivers/input/serio/xilinx_ps2.c | |
parent | ffaa5b984a9322bbd5d9a7f0814ca2ce70feebe5 (diff) | |
parent | cbbdece3048d0844b1cc6f4f8d18085e190721d7 (diff) | |
download | kernel_samsung_tuna-7db9cbb3748c46b80e5c99ffa91945b8dd4ed5e5.zip kernel_samsung_tuna-7db9cbb3748c46b80e5c99ffa91945b8dd4ed5e5.tar.gz kernel_samsung_tuna-7db9cbb3748c46b80e5c99ffa91945b8dd4ed5e5.tar.bz2 |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: xilinx_ps2 - fix warning
Input: bcm5974 - implement autosuspend support
Input: bcm5974 - add driver for Macbook Air and Pro Penryn touchpads
Input: paper over a bug in Synaptics X driver
Input: evdev - split EVIOCGBIT handlig into a separate function
Input: i8042 - Add Dritek quirk for Acer TravelMate 4280
Input: xpad - add Pelican Eclipse D-Pad to the list of devices
Input: gpio-keys - make gpio_keys_device_driver static
Input: gpio-keys - fix possible NULL pointer dereference
Input: wm97xx - enable sub-drivers by default
Diffstat (limited to 'drivers/input/serio/xilinx_ps2.c')
-rw-r--r-- | drivers/input/serio/xilinx_ps2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/serio/xilinx_ps2.c b/drivers/input/serio/xilinx_ps2.c index 0ed044d..7650078 100644 --- a/drivers/input/serio/xilinx_ps2.c +++ b/drivers/input/serio/xilinx_ps2.c @@ -269,8 +269,8 @@ static int xps2_setup(struct device *dev, struct resource *regs_res, * we have the PS2 in a good state */ out_be32(drvdata->base_address + XPS2_SRST_OFFSET, XPS2_SRST_RESET); - dev_info(dev, "Xilinx PS2 at 0x%08X mapped to 0x%08X, irq=%d\n", - drvdata->phys_addr, (u32)drvdata->base_address, drvdata->irq); + dev_info(dev, "Xilinx PS2 at 0x%08X mapped to 0x%p, irq=%d\n", + drvdata->phys_addr, drvdata->base_address, drvdata->irq); serio = &drvdata->serio; serio->id.type = SERIO_8042; |