summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/dahdi/opvxa1200.c1
-rw-r--r--drivers/dahdi/wcopenpci.c1
-rw-r--r--drivers/dahdi/zaphfc/base.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/dahdi/opvxa1200.c b/drivers/dahdi/opvxa1200.c
index 02eb864..8a5193e 100644
--- a/drivers/dahdi/opvxa1200.c
+++ b/drivers/dahdi/opvxa1200.c
@@ -2403,6 +2403,7 @@ static int wctdm_initialize(struct wctdm *wc)
wc->span.chans = wc->chans;
wc->span.channels = wc->max_cards; /*MAX_NUM_CARDS;*/
wc->span.hooksig = wctdm_hooksig;
+ wc->span.owner = THIS_MODULE;
wc->span.irq = wc->dev->irq;
wc->span.open = wctdm_open;
wc->span.close = wctdm_close;
diff --git a/drivers/dahdi/wcopenpci.c b/drivers/dahdi/wcopenpci.c
index 6768d07..b28cac4 100644
--- a/drivers/dahdi/wcopenpci.c
+++ b/drivers/dahdi/wcopenpci.c
@@ -1313,6 +1313,7 @@ static int span_initialize(struct openpci *wc)
wc->span.chans = wc->chans;
wc->span.channels = MAX_PORTS;
wc->span.hooksig = openpci_hooksig;
+ wc->span.owner = THIS_MODULE;
wc->span.open = openpci_open;
wc->span.close = openpci_close;
wc->span.flags = DAHDI_FLAG_RBS;
diff --git a/drivers/dahdi/zaphfc/base.c b/drivers/dahdi/zaphfc/base.c
index 60a5688..049a37b 100644
--- a/drivers/dahdi/zaphfc/base.c
+++ b/drivers/dahdi/zaphfc/base.c
@@ -657,6 +657,7 @@ static int hfc_zap_initialize(struct dahdi_hfc *hfccard)
hfccard->span.spantype = hfctmp->nt_mode ? "NT" : "TE";
hfccard->span.manufacturer = "Cologne Chips";
hfccard->span.spanconfig = hfc_zap_spanconfig;
+ hfccard->span.owner = THIS_MODULE;
hfccard->span.chanconfig = hfc_zap_chanconfig;
hfccard->span.startup = hfc_zap_startup;
hfccard->span.shutdown = hfc_zap_shutdown;