1 /* 2 * Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com 3 * 4 * All rights reserved. Distributed under the terms of the MIT License. 5 * 6 */ 7 8 9 #include "HCIControllerAccessor.h" 10 11 HCIControllerAccessor::HCIControllerAccessor(BPath* path) : HCIDelegate(path) 12 { 13 14 15 } 16 17 status_t 18 HCIControllerAccessor::IssueCommand(raw_command* rc, size_t size) 19 { 20 21 if (GetID() < 0) 22 return B_ERROR; 23 24 25 return B_ERROR; 26 } 27