Commit 16003d235bdb4d1ebcecfe4915c6e6d8c95f4a0c

Authored by Joel Stanley
Committed by Benjamin Herrenschmidt
1 parent 85390378f0

powerpc/powernv: Fix typos in sysparam code

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

arch/powerpc/platforms/powernv/opal-sysparam.c
... ... @@ -222,13 +222,13 @@
222 222 }
223 223  
224 224 if (of_property_read_u32_array(sysparam, "param-len", size, count)) {
225   - pr_err("SYSPARAM: Missing propery param-len in the DT\n");
  225 + pr_err("SYSPARAM: Missing property param-len in the DT\n");
226 226 goto out_free_perm;
227 227 }
228 228  
229 229  
230 230 if (of_property_read_u8_array(sysparam, "param-perm", perm, count)) {
231   - pr_err("SYSPARAM: Missing propery param-perm in the DT\n");
  231 + pr_err("SYSPARAM: Missing property param-perm in the DT\n");
232 232 goto out_free_perm;
233 233 }
234 234