Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c75e2bb3 authored by Todd Poynor's avatar Todd Poynor Committed by Greg Kroah-Hartman
Browse files

staging: gasket: core: convert remaining info logs to debug



Remaining info-level logs in gasket core converted to debug-level; the
information is not needed during normal system operation.

Signed-off-by: default avatarTodd Poynor <toddpoynor@google.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1453e90c
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1819,7 +1819,7 @@ void gasket_unregister_device(const struct gasket_driver_desc *driver_desc)
	g_descs[desc_idx].driver_desc = NULL;
	mutex_unlock(&g_mutex);

	pr_info("removed %s driver\n", driver_desc->name);
	pr_debug("removed %s driver\n", driver_desc->name);
}
EXPORT_SYMBOL(gasket_unregister_device);

@@ -1827,7 +1827,7 @@ static int __init gasket_init(void)
{
	int i;

	pr_info("Performing one-time init of the Gasket framework.\n");
	pr_debug("%s\n", __func__);
	/* Check for duplicates and find a free slot. */
	mutex_lock(&g_mutex);
	for (i = 0; i < GASKET_FRAMEWORK_DESC_MAX; i++) {
@@ -1843,8 +1843,7 @@ static int __init gasket_init(void)

static void __exit gasket_exit(void)
{
	/* No deinit/dealloc needed at present. */
	pr_info("Removing Gasket framework module.\n");
	pr_debug("%s\n", __func__);
}
MODULE_DESCRIPTION("Google Gasket driver framework");
MODULE_VERSION(GASKET_FRAMEWORK_VERSION);