treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157
[linux-2.6-block.git] / drivers / media / pci / cx25821 / cx25821-cards.c
CommitLineData
c942fddf 1// SPDX-License-Identifier: GPL-2.0-or-later
1a9fc855
MCC
2/*
3 * Driver for the Conexant CX25821 PCIe bridge
4 *
5 * Copyright (C) 2009 Conexant Systems Inc.
6 * Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
7 * Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
1a9fc855
MCC
8 */
9
36d89f7d
JP
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
02b20b0b
MCC
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/pci.h>
02b20b0b
MCC
15
16#include "cx25821.h"
02b20b0b 17
770238bf 18/* board config info */
02b20b0b
MCC
19
20struct cx25821_board cx25821_boards[] = {
21 [UNKNOWN_BOARD] = {
0fe773df
LF
22 .name = "UNKNOWN/GENERIC",
23 /* Ensure safe default for unknown boards */
24 .clk_freq = 0,
25 },
02b20b0b
MCC
26
27 [CX25821_BOARD] = {
0fe773df
LF
28 .name = "CX25821",
29 .portb = CX25821_RAW,
30 .portc = CX25821_264,
0fe773df 31 },
02b20b0b
MCC
32
33};