mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-08-24 08:41:04 +00:00
Add support to read and write QUP mode registers in TLMM block. Change-Id: I9878af50f6920c577fa74047e01e9b37c0542dd1 Signed-off-by: Rishabh Bhatnagar <rishabhb@codeaurora.org> Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
15 lines
327 B
C
15 lines
327 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __LINUX_PINCTRL_MSM_H__
|
|
#define __LINUX_PINCTRL_MSM_H__
|
|
|
|
/* APIS to access qup_i3c registers */
|
|
int msm_qup_write(u32 mode, u32 val);
|
|
int msm_qup_read(u32 mode);
|
|
|
|
|
|
#endif /* __LINUX_PINCTRL_MSM_H__ */
|