Commit 48139ae2 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

I2C: fix compiler warnings in 2 drivers.

parent dcb326a2
......@@ -152,7 +152,7 @@ static int __init i2c_bitelv_init(void)
return -ENODEV;
}
}
pr_debug("i2c-elv: found device at %#x.\n",base);
pr_debug("i2c-elv: found device at %p.\n", (void *)base);
return 0;
}
......
......@@ -138,7 +138,7 @@ static int __init i2c_bitvelle_init(void)
return -ENODEV;
}
}
pr_debug("i2c-velleman: found device at %#x.\n",base);
pr_debug("i2c-velleman: found device at %p.\n",(void *)base);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment