mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-23 09:47:44 +00:00
hv: treewide: fix 'Function prototype/defn param type mismatch'
Fix the parameter type mismatch between API declaration and definition. Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
@@ -179,10 +179,8 @@ void free_irq_vector(uint32_t irq)
|
||||
*
|
||||
* return value: valid irq (>=0) on success, otherwise errno (< 0).
|
||||
*/
|
||||
int32_t request_irq(uint32_t req_irq,
|
||||
irq_action_t action_fn,
|
||||
void *priv_data,
|
||||
uint32_t flags)
|
||||
int32_t request_irq(uint32_t req_irq, irq_action_t action_fn, void *priv_data,
|
||||
uint32_t flags)
|
||||
{
|
||||
struct irq_desc *desc;
|
||||
uint32_t irq, vector;
|
||||
|
Reference in New Issue
Block a user