commit | a511536f4b8815308d178740902826de9c628f59 | [log] [tgz] |
---|---|---|
author | Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> | Tue Mar 10 18:58:00 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 15 18:41:11 2015 +0100 |
tree | 32aa80aad54a303f1648573a03e8f1e533dcfd80 | |
parent | 805184c451cdb225ffbdf83ba010160d74b3a471 [diff] |
staging: mt29f_spinand: remove pointer to pointer cast in function argument Removes unnecessary pointer to pointer cast on function arguments. It is worth noting that buf is already a u8 pointer. Issue detected and resolved using the following coccinelle script: @@ expression e; type t; identifier f; @@ f(..., -(t *) e ,...) Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>