mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
7cbf00bd41
The auxdevice layer is completely generic, it should be split from intel.c which is only geared to the 'cnl' hw_ops now. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Rander Wang <rander.wang@intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Link: https://lore.kernel.org/r/20221111013135.38289-8-yung-chuan.liao@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
19 lines
564 B
C
19 lines
564 B
C
/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
|
|
/* Copyright(c) 2015-2022 Intel Corporation. */
|
|
|
|
#ifndef __SDW_INTEL_AUXDEVICE_H
|
|
#define __SDW_INTEL_AUXDEVICE_H
|
|
|
|
int intel_link_startup(struct auxiliary_device *auxdev);
|
|
int intel_link_process_wakeen_event(struct auxiliary_device *auxdev);
|
|
|
|
struct sdw_intel_link_dev {
|
|
struct auxiliary_device auxdev;
|
|
struct sdw_intel_link_res link_res;
|
|
};
|
|
|
|
#define auxiliary_dev_to_sdw_intel_link_dev(auxiliary_dev) \
|
|
container_of(auxiliary_dev, struct sdw_intel_link_dev, auxdev)
|
|
|
|
#endif /* __SDW_INTEL_AUXDEVICE_H */
|