mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 17:36:49 +07:00
23 lines
655 B
C
23 lines
655 B
C
|
/*
|
||
|
* CXL Flash Device Driver
|
||
|
*
|
||
|
* Written by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>, IBM Corporation
|
||
|
* Uma Krishnan <ukrishn@linux.vnet.ibm.com>, IBM Corporation
|
||
|
*
|
||
|
* Copyright (C) 2018 IBM Corporation
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* as published by the Free Software Foundation; either version
|
||
|
* 2 of the License, or (at your option) any later version.
|
||
|
*/
|
||
|
|
||
|
#include <misc/ocxl.h>
|
||
|
|
||
|
#include "backend.h"
|
||
|
|
||
|
/* Backend ops to ocxlflash services */
|
||
|
const struct cxlflash_backend_ops cxlflash_ocxl_ops = {
|
||
|
.module = THIS_MODULE,
|
||
|
};
|