mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 05:24:12 +08:00
2e3cf97f47
Add IPA device attributes to expose information known by the IPA driver about the hardware and its configuration. All pointers used to display these attribute values (i.e., IPA pointer and endpoint pointers) will have been initialized by the time IPA probe has completed, so they may be safely dereferenced. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
437 B
C
16 lines
437 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
|
|
* Copyright (C) 2019-2021 Linaro Ltd.
|
|
*/
|
|
#ifndef _IPA_SYSFS_H_
|
|
#define _IPA_SYSFS_H_
|
|
|
|
struct attribute_group;
|
|
|
|
extern const struct attribute_group ipa_attribute_group;
|
|
extern const struct attribute_group ipa_feature_attribute_group;
|
|
extern const struct attribute_group ipa_modem_attribute_group;
|
|
|
|
#endif /* _IPA_SYSFS_H_ */
|