Commit 04af7c99 authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[PATCH] SCSI nsp32.c: missing parts of inline removal patch

The SCSI tree as included in 2.6.8-rc2-mm2 only removes the inline's
from the functions prototypes, but the part of my original patch that
also removes the inline's from the functions was lost.
Signed-off-by: default avatarAdrian Bunk <bunk@fs.tum.de>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 19026f9c
...@@ -3342,7 +3342,7 @@ static int nsp32_prom_read(nsp32_hw_data *data, int romaddr) ...@@ -3342,7 +3342,7 @@ static int nsp32_prom_read(nsp32_hw_data *data, int romaddr)
return val; return val;
} }
static inline void nsp32_prom_set(nsp32_hw_data *data, int bit, int val) static void nsp32_prom_set(nsp32_hw_data *data, int bit, int val)
{ {
int base = data->BaseAddress; int base = data->BaseAddress;
int tmp; int tmp;
...@@ -3360,7 +3360,7 @@ static inline void nsp32_prom_set(nsp32_hw_data *data, int bit, int val) ...@@ -3360,7 +3360,7 @@ static inline void nsp32_prom_set(nsp32_hw_data *data, int bit, int val)
udelay(10); udelay(10);
} }
static inline int nsp32_prom_get(nsp32_hw_data *data, int bit) static int nsp32_prom_get(nsp32_hw_data *data, int bit)
{ {
int base = data->BaseAddress; int base = data->BaseAddress;
int tmp, ret; int tmp, ret;
......
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