device.c (448c3de8ac8353fc4447738ae3c56c4eb6c2131d) device.c (6e7f3ee97bbe2c7d7a53b7dbd7a08a579e03c8c9)
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright(c) 2019 Intel Corporation. All rights rsvd. */
3#include <linux/init.h>
4#include <linux/kernel.h>
5#include <linux/module.h>
6#include <linux/pci.h>
7#include <linux/io-64-nonatomic-lo-hi.h>
8#include <linux/dmaengine.h>

--- 1304 unchanged lines hidden (view full) ---

1313};
1314
1315struct idxd_device_driver idxd_drv = {
1316 .type = dev_types,
1317 .probe = idxd_device_drv_probe,
1318 .remove = idxd_device_drv_remove,
1319 .name = "idxd",
1320};
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright(c) 2019 Intel Corporation. All rights rsvd. */
3#include <linux/init.h>
4#include <linux/kernel.h>
5#include <linux/module.h>
6#include <linux/pci.h>
7#include <linux/io-64-nonatomic-lo-hi.h>
8#include <linux/dmaengine.h>

--- 1304 unchanged lines hidden (view full) ---

1313};
1314
1315struct idxd_device_driver idxd_drv = {
1316 .type = dev_types,
1317 .probe = idxd_device_drv_probe,
1318 .remove = idxd_device_drv_remove,
1319 .name = "idxd",
1320};
1321EXPORT_SYMBOL_GPL(idxd_drv);