summaryrefslogtreecommitdiff
path: root/drivers/dahdi/zaphfc/base.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2010-09-08 13:34:58 +0300
committerTzafrir Cohen <tzafrir@cohens.org.il>2010-09-08 13:34:58 +0300
commitdb5ce0faef41095d4fbf9804031931f8e886b2a1 (patch)
tree483e24612e456dad08b7c23dbad087cabd9adb21 /drivers/dahdi/zaphfc/base.c
parentbc4ae5301d9c34a7f4df74ba1e84742b8e65ab58 (diff)
remove 'pvt' member of dahdi_span
r8984 removed the member 'pvt' of struct dahdi_span in dahdi/kernel.h . No use to have a pointer to a struct that is already embedded in our struct. Thus we remove a single usage of it and replace it with container_of().
Diffstat (limited to 'drivers/dahdi/zaphfc/base.c')
-rw-r--r--drivers/dahdi/zaphfc/base.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dahdi/zaphfc/base.c b/drivers/dahdi/zaphfc/base.c
index 049a37b..4db6736 100644
--- a/drivers/dahdi/zaphfc/base.c
+++ b/drivers/dahdi/zaphfc/base.c
@@ -592,7 +592,7 @@ static void hfc_hdlc_hard_xmit(struct dahdi_chan *d_chan)
static int hfc_zap_startup(struct dahdi_span *span)
{
- struct dahdi_hfc *zthfc = span->pvt;
+ struct dahdi_hfc *zthfc = dahdi_hfc_from_span(span);
struct hfc_card *hfctmp = zthfc->card;
int alreadyrunning;
@@ -682,7 +682,6 @@ static int hfc_zap_initialize(struct dahdi_hfc *hfccard)
hfccard->span.linecompat = DAHDI_CONFIG_AMI | DAHDI_CONFIG_CCS;
hfccard->span.offset = 0;
init_waitqueue_head(&hfccard->span.maintq);
- hfccard->span.pvt = hfccard;
for (i = 0; i < hfccard->span.channels; i++) {
memset(&hfccard->chans[i], 0x0, sizeof(struct dahdi_chan));