Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

-1
-1
drivers/firewire/ohci.c
··· 50 50 #define CREATE_TRACE_POINTS 51 51 #include <trace/events/firewire_ohci.h> 52 52 53 - #define ohci_info(ohci, f, args...) dev_info(ohci->card.device, f, ##args) 54 53 #define ohci_notice(ohci, f, args...) dev_notice(ohci->card.device, f, ##args) 55 54 #define ohci_err(ohci, f, args...) dev_err(ohci->card.device, f, ##args) 56 55