Commit 1914e9eb authored by Geordan Neukum's avatar Geordan Neukum Committed by Greg Kroah-Hartman

staging: kpc2000: kpc_spi: remove function kp_spi_bytes_per_word()

The static function kp_spi_bytes_per_word() is defined in kpc2000_spi.c,
but it is completely unused. As this function is unused, it can and
should be removed.
Signed-off-by: default avatarGeordan Neukum <gneukum1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66594e3f
...@@ -162,20 +162,6 @@ union kp_spi_ffctrl { ...@@ -162,20 +162,6 @@ union kp_spi_ffctrl {
/*************** /***************
* SPI Helpers * * SPI Helpers *
***************/ ***************/
static inline int
kp_spi_bytes_per_word(int word_len)
{
if (word_len <= 8){
return 1;
}
else if (word_len <= 16) {
return 2;
}
else { /* word_len <= 32 */
return 4;
}
}
static inline u64 static inline u64
kp_spi_read_reg(struct kp_spi_controller_state *cs, int idx) kp_spi_read_reg(struct kp_spi_controller_state *cs, int idx)
{ {
......
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