提交 07bd39f0 编写于 作者: V Vladimir Oltean 提交者: Joe Hershberger

net: tsec: Reverse Christmas tree notation

This is a cosmetic patch that reorders variable definitions in the
inverse order of their line length, where possible.
Signed-off-by: NVladimir Oltean <olteanv@gmail.com>
Acked-by: NJoe Hershberger <joe.hershberger@ni.com>
Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
上级 bca686a4
...@@ -259,8 +259,8 @@ static int tsec_send(struct udevice *dev, void *packet, int length) ...@@ -259,8 +259,8 @@ static int tsec_send(struct udevice *dev, void *packet, int length)
{ {
struct tsec_private *priv = (struct tsec_private *)dev->priv; struct tsec_private *priv = (struct tsec_private *)dev->priv;
struct tsec __iomem *regs = priv->regs; struct tsec __iomem *regs = priv->regs;
u16 status;
int result = 0; int result = 0;
u16 status;
int i; int i;
/* Find an empty buffer descriptor */ /* Find an empty buffer descriptor */
...@@ -708,9 +708,9 @@ static int init_phy(struct tsec_private *priv) ...@@ -708,9 +708,9 @@ static int init_phy(struct tsec_private *priv)
*/ */
static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info) static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info)
{ {
struct tsec_private *priv;
struct eth_device *dev; struct eth_device *dev;
int i; int i;
struct tsec_private *priv;
dev = (struct eth_device *)malloc(sizeof(*dev)); dev = (struct eth_device *)malloc(sizeof(*dev));
...@@ -794,14 +794,14 @@ int tsec_standard_init(bd_t *bis) ...@@ -794,14 +794,14 @@ int tsec_standard_init(bd_t *bis)
#else /* CONFIG_DM_ETH */ #else /* CONFIG_DM_ETH */
int tsec_probe(struct udevice *dev) int tsec_probe(struct udevice *dev)
{ {
struct tsec_private *priv = dev_get_priv(dev);
struct eth_pdata *pdata = dev_get_platdata(dev); struct eth_pdata *pdata = dev_get_platdata(dev);
struct fsl_pq_mdio_info mdio_info; struct tsec_private *priv = dev_get_priv(dev);
struct ofnode_phandle_args phandle_args; struct ofnode_phandle_args phandle_args;
u32 tbiaddr = CONFIG_SYS_TBIPA_VALUE; u32 tbiaddr = CONFIG_SYS_TBIPA_VALUE;
ofnode parent; struct fsl_pq_mdio_info mdio_info;
const char *phy_mode; const char *phy_mode;
fdt_addr_t reg; fdt_addr_t reg;
ofnode parent;
int ret; int ret;
pdata->iobase = (phys_addr_t)dev_read_addr(dev); pdata->iobase = (phys_addr_t)dev_read_addr(dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册