isci: make function declaration match implementation
Sparse complains that we redeclare this with a different type, because in the .c file we use an enum and in the .h file we declare the parameter as a u32. Probably it's best to use an enum in both places. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
Родитель
a900375605
Коммит
67787c3307
|
@ -212,7 +212,7 @@ enum sci_status sci_remote_node_context_destruct(struct sci_remote_node_context
|
||||||
scics_sds_remote_node_context_callback callback,
|
scics_sds_remote_node_context_callback callback,
|
||||||
void *callback_parameter);
|
void *callback_parameter);
|
||||||
enum sci_status sci_remote_node_context_suspend(struct sci_remote_node_context *sci_rnc,
|
enum sci_status sci_remote_node_context_suspend(struct sci_remote_node_context *sci_rnc,
|
||||||
u32 suspend_type,
|
enum sci_remote_node_suspension_reasons reason,
|
||||||
u32 suspension_code);
|
u32 suspension_code);
|
||||||
enum sci_status sci_remote_node_context_resume(struct sci_remote_node_context *sci_rnc,
|
enum sci_status sci_remote_node_context_resume(struct sci_remote_node_context *sci_rnc,
|
||||||
scics_sds_remote_node_context_callback cb_fn,
|
scics_sds_remote_node_context_callback cb_fn,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче