diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-08-14 16:12:21 +0300 |
---|---|---|
committer | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-08-14 16:12:21 +0300 |
commit | d4dcb339739e84bc1de335b567ee24f4f89fc19a (patch) | |
tree | d33af8138cd846f874d8f4c83bc6732533db5a2c /drivers/firewire | |
parent | 56a4832c9f2e46e380ee1979a02f44b115598bf3 (diff) | |
download | linux-d4dcb339739e84bc1de335b567ee24f4f89fc19a.tar.xz |
firewire: ohci: remove unused wrapper macro for dev_info()
The ohci_info() macro is a thin wrapper of dev_info(), while it is never
used.
Link: https://lore.kernel.org/r/20240814131222.69949-3-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/ohci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 198c96d75155..979f1e1f2d16 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c @@ -50,7 +50,6 @@ static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk); #define CREATE_TRACE_POINTS #include <trace/events/firewire_ohci.h> -#define ohci_info(ohci, f, args...) dev_info(ohci->card.device, f, ##args) #define ohci_notice(ohci, f, args...) dev_notice(ohci->card.device, f, ##args) #define ohci_err(ohci, f, args...) dev_err(ohci->card.device, f, ##args) |