mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-29 22:14:41 +08:00
3c9cfb5269
NXP Legal insists that the following are not fine: - Saying "NXP Semiconductors" instead of "NXP", since the company's registered name is "NXP" - Putting a "(c)" sign in the copyright string - Putting a comma in the copyright string The only accepted copyright string format is "Copyright <year-range> NXP". This patch changes the copyright headers in the networking files that were sent by me, or derived from code sent by me. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
21 lines
414 B
C
21 lines
414 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
|
|
/* Copyright 2021 NXP */
|
|
|
|
#include <linux/pci.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#if IS_ENABLED(CONFIG_FSL_ENETC_IERB)
|
|
|
|
int enetc_ierb_register_pf(struct platform_device *pdev,
|
|
struct pci_dev *pf_pdev);
|
|
|
|
#else
|
|
|
|
static inline int enetc_ierb_register_pf(struct platform_device *pdev,
|
|
struct pci_dev *pf_pdev)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
#endif
|