Commit a269ff34 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

memory: fsl_ifc: Fix whitespace issues

Fix minor whitespace and comment issues.  Do not break message strings.
No functional changes.
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent a6159740
...@@ -53,6 +53,7 @@ int fsl_ifc_find(phys_addr_t addr_base) ...@@ -53,6 +53,7 @@ int fsl_ifc_find(phys_addr_t addr_base)
for (i = 0; i < fsl_ifc_ctrl_dev->banks; i++) { for (i = 0; i < fsl_ifc_ctrl_dev->banks; i++) {
u32 cspr = ifc_in32(&fsl_ifc_ctrl_dev->gregs->cspr_cs[i].cspr); u32 cspr = ifc_in32(&fsl_ifc_ctrl_dev->gregs->cspr_cs[i].cspr);
if (cspr & CSPR_V && (cspr & CSPR_BA) == if (cspr & CSPR_V && (cspr & CSPR_BA) ==
convert_ifc_address(addr_base)) convert_ifc_address(addr_base))
return i; return i;
...@@ -153,8 +154,8 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data) ...@@ -153,8 +154,8 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data)
/* read for chip select error */ /* read for chip select error */
cs_err = ifc_in32(&ifc->cm_evter_stat); cs_err = ifc_in32(&ifc->cm_evter_stat);
if (cs_err) { if (cs_err) {
dev_err(ctrl->dev, "transaction sent to IFC is not mapped to" dev_err(ctrl->dev, "transaction sent to IFC is not mapped to any memory bank 0x%08X\n",
"any memory bank 0x%08X\n", cs_err); cs_err);
/* clear the chip select error */ /* clear the chip select error */
ifc_out32(IFC_CM_EVTER_STAT_CSER, &ifc->cm_evter_stat); ifc_out32(IFC_CM_EVTER_STAT_CSER, &ifc->cm_evter_stat);
...@@ -163,24 +164,24 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data) ...@@ -163,24 +164,24 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data)
err_addr = ifc_in32(&ifc->cm_erattr1); err_addr = ifc_in32(&ifc->cm_erattr1);
if (status & IFC_CM_ERATTR0_ERTYP_READ) if (status & IFC_CM_ERATTR0_ERTYP_READ)
dev_err(ctrl->dev, "Read transaction error" dev_err(ctrl->dev, "Read transaction error CM_ERATTR0 0x%08X\n",
"CM_ERATTR0 0x%08X\n", status); status);
else else
dev_err(ctrl->dev, "Write transaction error" dev_err(ctrl->dev, "Write transaction error CM_ERATTR0 0x%08X\n",
"CM_ERATTR0 0x%08X\n", status); status);
err_axiid = (status & IFC_CM_ERATTR0_ERAID) >> err_axiid = (status & IFC_CM_ERATTR0_ERAID) >>
IFC_CM_ERATTR0_ERAID_SHIFT; IFC_CM_ERATTR0_ERAID_SHIFT;
dev_err(ctrl->dev, "AXI ID of the error" dev_err(ctrl->dev, "AXI ID of the error transaction 0x%08X\n",
"transaction 0x%08X\n", err_axiid); err_axiid);
err_srcid = (status & IFC_CM_ERATTR0_ESRCID) >> err_srcid = (status & IFC_CM_ERATTR0_ESRCID) >>
IFC_CM_ERATTR0_ESRCID_SHIFT; IFC_CM_ERATTR0_ESRCID_SHIFT;
dev_err(ctrl->dev, "SRC ID of the error" dev_err(ctrl->dev, "SRC ID of the error transaction 0x%08X\n",
"transaction 0x%08X\n", err_srcid); err_srcid);
dev_err(ctrl->dev, "Transaction Address corresponding to error" dev_err(ctrl->dev, "Transaction Address corresponding to error ERADDR 0x%08X\n",
"ERADDR 0x%08X\n", err_addr); err_addr);
ret = IRQ_HANDLED; ret = IRQ_HANDLED;
} }
...@@ -199,7 +200,7 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data) ...@@ -199,7 +200,7 @@ static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data)
* the resources needed for the controller only. The * the resources needed for the controller only. The
* resources for the NAND banks themselves are allocated * resources for the NAND banks themselves are allocated
* in the chip probe function. * in the chip probe function.
*/ */
static int fsl_ifc_ctrl_probe(struct platform_device *dev) static int fsl_ifc_ctrl_probe(struct platform_device *dev)
{ {
int ret = 0; int ret = 0;
...@@ -250,8 +251,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev) ...@@ -250,8 +251,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
/* get the Controller level irq */ /* get the Controller level irq */
fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0); fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
if (fsl_ifc_ctrl_dev->irq == 0) { if (fsl_ifc_ctrl_dev->irq == 0) {
dev_err(&dev->dev, "failed to get irq resource " dev_err(&dev->dev, "failed to get irq resource for IFC\n");
"for IFC\n");
ret = -ENODEV; ret = -ENODEV;
goto err; goto err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment