1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 4 * All rights reserved. 5 * 6 * File: firmware.h 7 * 8 * Purpose: Version and Release Information 9 * 10 * Author: Yiching Chen 11 * 12 * Date: May 20, 2004 13 * 14 */ 15 16#ifndef __FIRMWARE_H__ 17#define __FIRMWARE_H__ 18 19#include "device.h" 20 21int vnt_download_firmware(struct vnt_private *priv); 22int vnt_firmware_branch_to_sram(struct vnt_private *priv); 23int vnt_check_firmware_version(struct vnt_private *priv); 24 25#endif /* __FIRMWARE_H__ */ 26