From 38f916050a9fba3c9fd03466f724ec0ed63ecfed Mon Sep 17 00:00:00 2001 From: Oron Peled Date: Sun, 30 Jan 2011 18:16:35 +0000 Subject: [PATCH] xpp: Remove few extra leading spaces Signed-off-by: Oron Peled Acked-by: Tzafrir Cohen git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9713 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/xpp/xpp_dahdi.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/dahdi/xpp/xpp_dahdi.c b/drivers/dahdi/xpp/xpp_dahdi.c index 397ab91..cc4edef 100644 --- a/drivers/dahdi/xpp/xpp_dahdi.c +++ b/drivers/dahdi/xpp/xpp_dahdi.c @@ -1127,21 +1127,21 @@ int dahdi_register_xpd(xpd_t *xpd) XPD_ERR(xpd, "Already registered\n"); return -EEXIST; } - cn = PHONEDEV(xpd).channels; + cn = PHONEDEV(xpd).channels; XPD_DBG(DEVICES, xpd, "Initializing span: %d channels.\n", cn); - memset(&PHONEDEV(xpd).span, 0, sizeof(struct dahdi_span)); + memset(&PHONEDEV(xpd).span, 0, sizeof(struct dahdi_span)); for(i = 0; i < cn; i++) { memset(XPD_CHAN(xpd, i), 0, sizeof(struct dahdi_chan)); } - span = &PHONEDEV(xpd).span; + span = &PHONEDEV(xpd).span; snprintf(span->name, MAX_SPANNAME, "%s/%s", xbus->busname, xpd->xpdname); span->deflaw = DAHDI_LAW_MULAW; /* default, may be overriden by card_* drivers */ span->channels = cn; - span->chans = PHONEDEV(xpd).chans; + span->chans = PHONEDEV(xpd).chans; span->flags = DAHDI_FLAG_RBS; - if(PHONEDEV(xpd).phoneops->card_hooksig) + if(PHONEDEV(xpd).phoneops->card_hooksig) span->ops = &xpp_rbs_span_ops; /* Only with RBS bits */ else span->ops = &xpp_span_ops;