Updated printing functions use dev_* helpers to provide more meaningful messages. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 777bc4801a6868fcbff09ffb6e30f023e7c5ed38 Mon Sep 17 00:00:00 2001
 | 
						|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
 | 
						|
Date: Wed, 2 Jan 2019 00:00:02 +0100
 | 
						|
Subject: [PATCH] bcma: use dev_* printing functions
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Type: text/plain; charset=UTF-8
 | 
						|
Content-Transfer-Encoding: 8bit
 | 
						|
 | 
						|
It provides more meaningful messages.
 | 
						|
 | 
						|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
 | 
						|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
 | 
						|
---
 | 
						|
 drivers/bcma/bcma_private.h | 8 ++++----
 | 
						|
 1 file changed, 4 insertions(+), 4 deletions(-)
 | 
						|
 | 
						|
--- a/drivers/bcma/bcma_private.h
 | 
						|
+++ b/drivers/bcma/bcma_private.h
 | 
						|
@@ -10,13 +10,13 @@
 | 
						|
 #include <linux/delay.h>
 | 
						|
 
 | 
						|
 #define bcma_err(bus, fmt, ...) \
 | 
						|
-	pr_err("bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
+	dev_err((bus)->dev, "bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
 #define bcma_warn(bus, fmt, ...) \
 | 
						|
-	pr_warn("bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
+	dev_warn((bus)->dev, "bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
 #define bcma_info(bus, fmt, ...) \
 | 
						|
-	pr_info("bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
+	dev_info((bus)->dev, "bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
 #define bcma_debug(bus, fmt, ...) \
 | 
						|
-	pr_debug("bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
+	dev_dbg((bus)->dev, "bus%d: " fmt, (bus)->num, ##__VA_ARGS__)
 | 
						|
 
 | 
						|
 struct bcma_bus;
 | 
						|
 
 |