Re: [net-next v3 15/15] idpf: Introduce idpf driver
From: Joe Perches <joe@perches.com>
Date: 2020-06-26 03:35:50
On Thu, 2020-06-25 at 19:07 -0700, Jeff Kirsher wrote:
From: Alan Brady <redacted> Utilizes the Intel Ethernet Common Module and provides a device specific implementation for data plane devices.
[]
quoted hunk ↗ jump to hunk
diff --git a/drivers/net/ethernet/intel/idpf/idpf_main.c b/drivers/net/ethernet/intel/idpf/idpf_main.c
[]
quoted hunk ↗ jump to hunk
@@ -0,0 +1,136 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* Copyright (C) 2020 Intel Corporation */ + +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#include "idpf_dev.h" +#include "idpf_devids.h" + +#define DRV_SUMMARY "Intel(R) Data Plane Function Linux Driver" +static const char idpf_driver_string[] = DRV_SUMMARY; +static const char idpf_copyright[] = "Copyright (c) 2020, Intel Corporation."; + +MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>"); +MODULE_DESCRIPTION(DRV_SUMMARY); +MODULE_LICENSE("GPL v2");
[]
+static int __init idpf_module_init(void)
+{
+ int status;
+
+ pr_info("%s", idpf_driver_string);missing format terminating newline.
+ pr_info("%s\n", idpf_copyright);