The Pedigree Project 0.1
modules/drivers/common/virtio/main.cc
1/* Copyright (c) 2026, Pedigree Developers. SPDX-License-Identifier: ISC */
2#include "modules/Module.h"
3
4namespace {
5bool entry() {
6 return true;
7}
8void exit() {}
9} // namespace
10
11MODULE_INFO_NON_UNLOADABLE("virtio-pci", &entry, &exit, "pci");