9913ccceda
Take a snapshot of our qcom-iommu-util module as of commit f843a80d2c45 ("Merge "defconfig: gen3auto: Separated if_changed"") on msm-5.15. Update minor lint warnings with respect to header inclusions and spacing. Change-Id: Ib33f54f081eb029ade172254a6732c49dcf1f73d Signed-off-by: Chris Goldsworthy <quic_cgoldswo@quicinc.com>
17 lines
530 B
C
17 lines
530 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
#ifndef __QCOM_IO_PGTABLE_ALLOC_H
|
|
#define __QCOM_IO_PGTABLE_ALLOC_H
|
|
|
|
int qcom_io_pgtable_allocator_register(u32 vmid);
|
|
void qcom_io_pgtable_allocator_unregister(u32 vmid);
|
|
struct page *qcom_io_pgtable_alloc_page(u32 vmid, gfp_t gfp);
|
|
void qcom_io_pgtable_free_page(struct page *page);
|
|
int qcom_io_pgtable_alloc_init(void);
|
|
void qcom_io_pgtable_alloc_exit(void);
|
|
|
|
#endif /* __QCOM_IO_PGTABLE_ALLOC_H */
|
|
|