|
@@ -2271,7 +2271,7 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
|
|
|
|
|
|
parent_irq = irq_of_parse_and_map(ciu_node, 0);
|
|
|
if (!parent_irq) {
|
|
|
- pr_err("ERROR: Couldn't acquire parent_irq for %s\n.",
|
|
|
+ pr_err("ERROR: Couldn't acquire parent_irq for %s\n",
|
|
|
ciu_node->name);
|
|
|
return -EINVAL;
|
|
|
}
|
|
@@ -2281,7 +2281,7 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
|
|
|
|
|
|
addr = of_get_address(ciu_node, 0, NULL, NULL);
|
|
|
if (!addr) {
|
|
|
- pr_err("ERROR: Couldn't acquire reg(0) %s\n.", ciu_node->name);
|
|
|
+ pr_err("ERROR: Couldn't acquire reg(0) %s\n", ciu_node->name);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
host_data->raw_reg = (u64)phys_to_virt(
|
|
@@ -2289,7 +2289,7 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
|
|
|
|
|
|
addr = of_get_address(ciu_node, 1, NULL, NULL);
|
|
|
if (!addr) {
|
|
|
- pr_err("ERROR: Couldn't acquire reg(1) %s\n.", ciu_node->name);
|
|
|
+ pr_err("ERROR: Couldn't acquire reg(1) %s\n", ciu_node->name);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
host_data->en_reg = (u64)phys_to_virt(
|
|
@@ -2297,7 +2297,7 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
|
|
|
|
|
|
r = of_property_read_u32(ciu_node, "cavium,max-bits", &val);
|
|
|
if (r) {
|
|
|
- pr_err("ERROR: Couldn't read cavium,max-bits from %s\n.",
|
|
|
+ pr_err("ERROR: Couldn't read cavium,max-bits from %s\n",
|
|
|
ciu_node->name);
|
|
|
return r;
|
|
|
}
|
|
@@ -2307,7 +2307,7 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
|
|
|
&octeon_irq_domain_cib_ops,
|
|
|
host_data);
|
|
|
if (!cib_domain) {
|
|
|
- pr_err("ERROR: Couldn't irq_domain_add_linear()\n.");
|
|
|
+ pr_err("ERROR: Couldn't irq_domain_add_linear()\n");
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|