
Rouleur has different hph settings for different foundry id. Read foundry id and update hph settings so as to provide same settings to end user. Change-Id: I114047226462ab95e0c93271c3d6099f15af2343 Signed-off-by: Vatsal Bucha <vbucha@codeaurora.org>
23 行
515 B
C
23 行
515 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2020, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _PM2250_SPMI_H
|
|
#define _PM2250_SPMI_H
|
|
|
|
#ifdef CONFIG_PM2250_SPMI
|
|
int pm2250_spmi_write(struct device *dev, int reg, int value);
|
|
int pm2250_spmi_read(struct device *dev, int reg, int *value);
|
|
#else
|
|
int pm2250_spmi_write(struct device *dev, int reg, int value)
|
|
{
|
|
return 0;
|
|
}
|
|
int pm2250_spmi_read(struct device *dev, int reg, int *value);
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_PM2250_SPMI */
|
|
|
|
#endif
|