diff options
author | 2017-05-23 17:55:06 +0000 | |
---|---|---|
committer | 2017-05-23 17:55:06 +0000 | |
commit | 0f6296e038b5c299654d596026e7bee5aa723e56 (patch) | |
tree | a51b545d58c8128abfd6caa9ca43d32343011f62 /qemu/hw/mem/nvdimm.c | |
parent | c4d68bc45aa6aa8b7fe39bce206cb17c2cb2d365 (diff) | |
parent | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (diff) |
Merge "Adding qemu as a submodule of KVMFORNFV"
Diffstat (limited to 'qemu/hw/mem/nvdimm.c')
-rw-r--r-- | qemu/hw/mem/nvdimm.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/qemu/hw/mem/nvdimm.c b/qemu/hw/mem/nvdimm.c deleted file mode 100644 index 0a602f28b..000000000 --- a/qemu/hw/mem/nvdimm.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Non-Volatile Dual In-line Memory Module Virtualization Implementation - * - * Copyright(C) 2015 Intel Corporation. - * - * Author: - * Xiao Guangrong <guangrong.xiao@linux.intel.com> - * - * Currently, it only supports PMEM Virtualization. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see <http://www.gnu.org/licenses/> - */ - -#include "qemu/osdep.h" -#include "hw/mem/nvdimm.h" - -static void nvdimm_class_init(ObjectClass *oc, void *data) -{ - DeviceClass *dc = DEVICE_CLASS(oc); - - /* nvdimm hotplug has not been supported yet. */ - dc->hotpluggable = false; -} - -static TypeInfo nvdimm_info = { - .name = TYPE_NVDIMM, - .parent = TYPE_PC_DIMM, - .class_init = nvdimm_class_init, -}; - -static void nvdimm_register_types(void) -{ - type_register_static(&nvdimm_info); -} - -type_init(nvdimm_register_types) |