diff options
| author | Fengguang Wu <[email protected]> | 2014-08-05 22:00:18 +0530 |
|---|---|---|
| committer | Vinod Koul <[email protected]> | 2014-08-05 22:00:18 +0530 |
| commit | 1141b7e95aa1d5c328c719bc405714d90c167a50 (patch) | |
| tree | 524b8340603a7bd18c17f25925e9bbc83bc6a0e2 | |
| parent | 6fc8ae787c589245ee3395630d2c428a1afab26c (diff) | |
dmaengine: nbpf_error_get_channel() can be static
CC: Guennadi Liakhovetski <[email protected]>
CC: Vinod Koul <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: Vinod Koul <[email protected]>
| -rw-r--r-- | drivers/dma/nbpfaxi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/nbpfaxi.c b/drivers/dma/nbpfaxi.c index cea6a3768e2e..5aeada56a442 100644 --- a/drivers/dma/nbpfaxi.c +++ b/drivers/dma/nbpfaxi.c @@ -351,7 +351,7 @@ static u32 nbpf_error_get(struct nbpf_device *nbpf) return nbpf_read(nbpf, NBPF_DSTAT_ER); } -struct nbpf_channel *nbpf_error_get_channel(struct nbpf_device *nbpf, u32 error) +static struct nbpf_channel *nbpf_error_get_channel(struct nbpf_device *nbpf, u32 error) { return nbpf->chan + __ffs(error); } |