1 /* 2 * Copyright 2018, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #include <sys/cdefs.h> 7 #include <util/list.h> 8 #include <sys/haiku-module.h> 9 #include <device_if.h> 10 11 #include "../freebsd_network/shared.h" 12 13 14 void* 15 DEVICE_REGISTER(device_t dev) 16 { 17 return dev->methods.device_register(dev); 18 } 19