10ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel/*
20ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel * Copyright 2012 The Android Open Source Project
30ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel * Copyright (c) 2013, The Linux Foundation. All rights reserved.
40ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel * Not a Contribution.
50ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
60ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  Licensed under the Apache License, Version 2.0 (the "License");
70ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  you may not use this file except in compliance with the License.
80ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel * You may obtain a copy of the License at
90ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
100ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  http://www.apache.org/licenses/LICENSE-2.0
110ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
120ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  Unless required by applicable law or agreed to in writing, software
130ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  distributed under the License is distributed on an "AS IS" BASIS,
140ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
150ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  See the License for the specific language governing permissions and
160ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  limitations under the License.
170ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel */
180ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
190ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel/******************************************************************************
200ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
210ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  Filename:      hci_smd.h
220ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
230ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *  Description:   Contains vendor-specific definitions used in smd controls
240ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel *
250ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel ******************************************************************************/
260ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
270ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel#ifndef HCI_SMD_H
280ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel#define HCI_SMD_H
290ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
300ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel#define APPS_RIVA_BT_ACL_CH  "/dev/smd2"
310ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel#define APPS_RIVA_BT_CMD_CH  "/dev/smd3"
320ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
330ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudelint bt_hci_init_transport ( int *pFd );
340ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
350ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudelint bt_hci_deinit_transport(int *pFd);
360ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel
370ebd0bab066cd86d7a19f4646e0686dae885004eThierry Strudel#endif /* HCI_SMD_H */
38