forked from MIrrors/gasket-driver
Now that the SPDX tag is in all gasket files, that identifies the license in a specific and legally-defined manner. So the extra GPL text wording can be removed as it is no longer needed at all. This is done on a quest to remove the 700+ different ways that files in the kernel describe the GPL license text. And there's unneeded stuff like the address (sometimes incorrect) for the FSF which is never needed. Cc: Rob Springer <rspringer@google.com> Cc: John Joseph <jnjoseph@google.com> Cc: Ben Chan <benchan@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
65 lines
2.7 KiB
C
65 lines
2.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Common logging utilities for the Gasket driver framework.
|
|
*
|
|
* Copyright (C) 2018 Google, Inc.
|
|
*/
|
|
|
|
#include <linux/pci.h>
|
|
#include <linux/printk.h>
|
|
|
|
#ifndef _GASKET_LOGGING_H_
|
|
#define _GASKET_LOGGING_H_
|
|
|
|
/* Base macro; other logging can/should be built on top of this. */
|
|
#define gasket_dev_log(level, device, pci_dev, format, arg...) \
|
|
if (false) { \
|
|
if (pci_dev) { \
|
|
dev_##level(&(pci_dev)->dev, "%s: " format "\n", \
|
|
__func__, ##arg); \
|
|
} else { \
|
|
gasket_nodev_log(level, format, ##arg); \
|
|
} \
|
|
}
|
|
|
|
/* "No-device" logging macros. */
|
|
#define gasket_nodev_log(level, format, arg...) \
|
|
if (false) pr_##level("gasket: %s: " format "\n", __func__, ##arg)
|
|
|
|
#define gasket_nodev_debug(format, arg...) \
|
|
if (false) gasket_nodev_log(debug, format, ##arg)
|
|
|
|
#define gasket_nodev_info(format, arg...) \
|
|
if (false) gasket_nodev_log(info, format, ##arg)
|
|
|
|
#define gasket_nodev_warn(format, arg...) \
|
|
if (false) gasket_nodev_log(warn, format, ##arg)
|
|
|
|
#define gasket_nodev_error(format, arg...) \
|
|
if (false) gasket_nodev_log(err, format, ##arg)
|
|
|
|
/* gasket_dev logging macros */
|
|
#define gasket_log_info(gasket_dev, format, arg...) \
|
|
if (false) gasket_dev_log(info, (gasket_dev)->dev_info.device, \
|
|
(gasket_dev)->pci_dev, format, ##arg)
|
|
|
|
#define gasket_log_warn(gasket_dev, format, arg...) \
|
|
if (false) gasket_dev_log(warn, (gasket_dev)->dev_info.device, \
|
|
(gasket_dev)->pci_dev, format, ##arg)
|
|
|
|
#define gasket_log_error(gasket_dev, format, arg...) \
|
|
if (false) gasket_dev_log(err, (gasket_dev)->dev_info.device, \
|
|
(gasket_dev)->pci_dev, format, ##arg)
|
|
|
|
#define gasket_log_debug(gasket_dev, format, arg...) \
|
|
if (false){ \
|
|
if ((gasket_dev)->pci_dev) { \
|
|
dev_dbg(&((gasket_dev)->pci_dev)->dev, "%s: " format \
|
|
"\n", __func__, ##arg); \
|
|
} else { \
|
|
gasket_nodev_log(debug, format, ##arg); \
|
|
} \
|
|
}
|
|
|
|
#endif
|