Skip to content
Snippets Groups Projects
Commit 3eaeab6a authored by Alessandro Rubini's avatar Alessandro Rubini
Browse files

trivial: move some printk() to pr_debug()


Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
parent 411a44c2
No related merge requests found
......@@ -6,12 +6,12 @@
*/
int __weak spec_gpio_init(struct fmc_device *fmc)
{
printk("%s - %s\n", __FILE__, __func__);
pr_debug("%s - %s\n", __FILE__, __func__);
return 0;
}
void __weak spec_gpio_exit(struct fmc_device *fmc)
{
printk("%s - %s\n", __FILE__, __func__);
pr_debug("%s - %s\n", __FILE__, __func__);
}
......@@ -6,11 +6,11 @@
int spec_gpio_init(struct fmc_device *fmc)
{
printk("%s - %s\n", __FILE__, __func__);
pr_debug("%s - %s\n", __FILE__, __func__);
return 0;
}
void spec_gpio_exit(struct fmc_device *fmc)
{
printk("%s - %s\n", __FILE__, __func__);
pr_debug("%s - %s\n", __FILE__, __func__);
}
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