efx_reflash.h 703 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /****************************************************************************
  3. * Driver for AMD network controllers and boards
  4. * Copyright (C) 2025, Advanced Micro Devices, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation, incorporated herein by reference.
  9. */
  10. #ifndef _EFX_REFLASH_H
  11. #define _EFX_REFLASH_H
  12. #include "net_driver.h"
  13. #include <linux/firmware.h>
  14. int efx_reflash_flash_firmware(struct efx_nic *efx, const struct firmware *fw,
  15. struct netlink_ext_ack *extack);
  16. #endif /* _EFX_REFLASH_H */