Commit 3eaeab6a authored by Alessandro Rubini's avatar Alessandro Rubini

trivial: move some printk() to pr_debug()

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