dma.c (0cda4f6986a3824cac500f66326ff267bf37110f) | dma.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/device.h> 8#include <linux/io-64-nonatomic-lo-hi.h> --- 325 unchanged lines hidden (view full) --- 334}; 335 336struct idxd_device_driver idxd_dmaengine_drv = { 337 .probe = idxd_dmaengine_drv_probe, 338 .remove = idxd_dmaengine_drv_remove, 339 .name = "dmaengine", 340 .type = dev_types, 341}; | 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/device.h> 8#include <linux/io-64-nonatomic-lo-hi.h> --- 325 unchanged lines hidden (view full) --- 334}; 335 336struct idxd_device_driver idxd_dmaengine_drv = { 337 .probe = idxd_dmaengine_drv_probe, 338 .remove = idxd_dmaengine_drv_remove, 339 .name = "dmaengine", 340 .type = dev_types, 341}; |
342EXPORT_SYMBOL_GPL(idxd_dmaengine_drv); |
|