From 2be63b878f2a1e6d939b05f4f5cb733cb39bcd22 Mon Sep 17 00:00:00 2001 From: "Jorge Boncompte [DTI2]" Date: Tue, 17 Jun 2008 16:18:49 -0700 Subject: atm: [iphase] move struct suni_priv to suni.h Signed-off-by: Jorge Boncompte [DTI2] Signed-off-by: Chas Williams Signed-off-by: David S. Miller --- drivers/atm/iphase.c | 7 +------ drivers/atm/suni.c | 9 --------- drivers/atm/suni.h | 9 ++++++++- 3 files changed, 9 insertions(+), 16 deletions(-) (limited to 'drivers/atm') diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c index 139fce6968a..14e4638759a 100644 --- a/drivers/atm/iphase.c +++ b/drivers/atm/iphase.c @@ -65,12 +65,7 @@ #include "iphase.h" #include "suni.h" #define swap(x) (((x & 0xff) << 8) | ((x & 0xff00) >> 8)) -struct suni_priv { - struct k_sonet_stats sonet_stats; /* link diagnostics */ - unsigned char loop_mode; /* loopback mode */ - struct atm_dev *dev; /* device back-pointer */ - struct suni_priv *next; /* next SUNI */ -}; + #define PRIV(dev) ((struct suni_priv *) dev->phy_data) static unsigned char ia_phy_get(struct atm_dev *dev, unsigned long addr); diff --git a/drivers/atm/suni.c b/drivers/atm/suni.c index b1d063cc4fb..6097f6877a4 100644 --- a/drivers/atm/suni.c +++ b/drivers/atm/suni.c @@ -29,15 +29,6 @@ #define DPRINTK(format,args...) #endif - -struct suni_priv { - struct k_sonet_stats sonet_stats; /* link diagnostics */ - int loop_mode; /* loopback mode */ - struct atm_dev *dev; /* device back-pointer */ - struct suni_priv *next; /* next SUNI */ -}; - - #define PRIV(dev) ((struct suni_priv *) dev->phy_data) #define PUT(val,reg) dev->ops->phy_put(dev,val,SUNI_##reg) diff --git a/drivers/atm/suni.h b/drivers/atm/suni.h index d14c835abc9..efa79bfae75 100644 --- a/drivers/atm/suni.h +++ b/drivers/atm/suni.h @@ -8,7 +8,7 @@ #include #include - +#include /* SUNI registers */ @@ -205,6 +205,13 @@ #ifdef __KERNEL__ +struct suni_priv { + struct k_sonet_stats sonet_stats; /* link diagnostics */ + int loop_mode; /* loopback mode */ + struct atm_dev *dev; /* device back-pointer */ + struct suni_priv *next; /* next SUNI */ +}; + int suni_init(struct atm_dev *dev); #endif -- cgit v1.2.3