blob: f0f62323d1c5d5d129962670459fc704f311c3d9 [file] [log] [blame]
#include "device.h"
#include <zircon/errors.h>
namespace wlan {
namespace rtl88xx {
Device::~Device() {}
// static
zx_status_t Device::Create(std::unique_ptr<Bus> bus, std::unique_ptr<Device>* device) {
return ZX_ERR_NOT_SUPPORTED;
}
} // namespace rtl88xx
} // namespace wlan