mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 14:20:55 +07:00
drivers/misc/sgi-gru: make functions static
The functions gru_get_cb_exception_detail_str() and gru_abort() were only called locally from that file. We can make them static. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Acked-by: Dimitri Sivanich <sivanich@sgi.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a010d27617
commit
1126bc2eb4
@ -429,7 +429,7 @@ int gru_get_cb_exception_detail(void *cb,
|
||||
return 0;
|
||||
}
|
||||
|
||||
char *gru_get_cb_exception_detail_str(int ret, void *cb,
|
||||
static char *gru_get_cb_exception_detail_str(int ret, void *cb,
|
||||
char *buf, int size)
|
||||
{
|
||||
struct gru_control_block_status *gen = (void *)cb;
|
||||
@ -505,7 +505,7 @@ int gru_wait_proc(void *cb)
|
||||
return ret;
|
||||
}
|
||||
|
||||
void gru_abort(int ret, void *cb, char *str)
|
||||
static void gru_abort(int ret, void *cb, char *str)
|
||||
{
|
||||
char buf[GRU_EXC_STR_SIZE];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user