mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 22:06:35 +07:00
85630469d2
Change all files to add SPDX license identifiers and remove license text. This is only an administrative change, there is no change in actual license or copyright for any file. Signed-off-by: Lior David <liord@codeaurora.org> Signed-off-by: Maya Erez <merez@codeaurora.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
29 lines
680 B
C
29 lines
680 B
C
// SPDX-License-Identifier: ISC
|
|
/*
|
|
* Copyright (c) 2014-2015,2017 Qualcomm Atheros, Inc.
|
|
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
#include <linux/firmware.h>
|
|
#include <linux/module.h>
|
|
#include <linux/crc32.h>
|
|
#include "wil6210.h"
|
|
#include "fw.h"
|
|
|
|
MODULE_FIRMWARE(WIL_FW_NAME_DEFAULT);
|
|
MODULE_FIRMWARE(WIL_FW_NAME_SPARROW_PLUS);
|
|
MODULE_FIRMWARE(WIL_BOARD_FILE_NAME);
|
|
MODULE_FIRMWARE(WIL_FW_NAME_TALYN);
|
|
MODULE_FIRMWARE(WIL_BRD_NAME_TALYN);
|
|
|
|
static
|
|
void wil_memset_toio_32(volatile void __iomem *dst, u32 val,
|
|
size_t count)
|
|
{
|
|
volatile u32 __iomem *d = dst;
|
|
|
|
for (count += 4; count > 4; count -= 4)
|
|
__raw_writel(val, d++);
|
|
}
|
|
|
|
#include "fw_inc.c"
|