diff mbox

isdn/gigaset: report ISDN4Linux interface only once

Message ID 20111127-patch-gigaset-01.tilman@imap.cc
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Tilman Schmidt Nov. 27, 2011, 5:39 p.m. UTC
Move the "ISDN4Linux interface" message from device registration,
where it is emitted for each device, to driver registration, where
it is emitted only once, for consistency with the CAPI variant.

Signed-off-by: Tilman Schmidt <tilman@imap.cc>
---
 drivers/isdn/gigaset/i4l.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

Comments

David Miller Nov. 27, 2011, 10:08 p.m. UTC | #1
From: Tilman Schmidt <tilman@imap.cc>
Date: Sun, 27 Nov 2011 18:39:22 +0100

> Move the "ISDN4Linux interface" message from device registration,
> where it is emitted for each device, to driver registration, where
> it is emitted only once, for consistency with the CAPI variant.
> 
> Signed-off-by: Tilman Schmidt <tilman@imap.cc>

Applied to net-next, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/isdn/gigaset/i4l.c b/drivers/isdn/gigaset/i4l.c
index 04231cb..1793ba1 100644
--- a/drivers/isdn/gigaset/i4l.c
+++ b/drivers/isdn/gigaset/i4l.c
@@ -624,8 +624,6 @@  int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid)
 {
 	isdn_if *iif;
 
-	pr_info("ISDN4Linux interface\n");
-
 	iif = kmalloc(sizeof *iif, GFP_KERNEL);
 	if (!iif) {
 		pr_err("out of memory\n");
@@ -684,6 +682,7 @@  void gigaset_isdn_unregdev(struct cardstate *cs)
  */
 void gigaset_isdn_regdrv(void)
 {
+	pr_info("ISDN4Linux interface\n");
 	/* nothing to do */
 }