mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-22 01:43:37 -04:00
Keep interrupt handling code in a dedicated file. This helps keep driver structured better and prepares for more functionality added to this file. Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel) Signed-off-by: Piotr Raczynski <piotr.raczynski@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
10 lines
236 B
C
10 lines
236 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2023, Intel Corporation. */
|
|
|
|
#ifndef _ICE_IRQ_H_
|
|
#define _ICE_IRQ_H_
|
|
|
|
int ice_init_interrupt_scheme(struct ice_pf *pf);
|
|
void ice_clear_interrupt_scheme(struct ice_pf *pf);
|
|
|
|
#endif
|