Platform data is added to the WCNSS platform device to indicate if the board containing the WCNSS device is configured with an external 48MHz XO. In addition a module param is added to the WCNSS driver to allow the platform data to be overridden. CRs-Fixed: 288847 Signed-off-by: Ankur Nandwani <ankurn@codeaurora.org> Acked-by: Jeff Johnson <jjohnson@qca.qualcomm.com>
21 lines
674 B
C
21 lines
674 B
C
/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __QCOM_WCNSS_DEVICE__H
|
|
#define __QCOM_WCNSS_DEVICE__H
|
|
|
|
struct qcom_wcnss_opts {
|
|
bool has_48mhz_xo;
|
|
};
|
|
|
|
#endif /* __QCOM_WCNSS_DEVICE__H */
|