aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTilman Schmidt <tilman@imap.cc>2011-11-27 07:39:22 +0000
committerDavid S. Miller <davem@davemloft.net>2011-11-27 17:08:30 -0500
commitfd4f862717ece652a76b4bb6c6d2c9656dbf0f7e (patch)
tree5a5b9e199625e9692db61fa09cfbd75472a1643d /drivers
parentifenslave: Fix unused variable warnings. (diff)
downloadlinux-dev-fd4f862717ece652a76b4bb6c6d2c9656dbf0f7e.tar.xz
linux-dev-fd4f862717ece652a76b4bb6c6d2c9656dbf0f7e.zip
isdn/gigaset: report ISDN4Linux interface only once
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> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/isdn/gigaset/i4l.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/isdn/gigaset/i4l.c b/drivers/isdn/gigaset/i4l.c
index 04231cb2f031..1793ba1b6a89 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 */
}