07219d4f2b
Adding basic library, Kconfig, make and arch specific files needed for vm on Pineapple. This is just snapshot of kalama's basic initial files from 'commit 5beb98404269 ("Merge "i3c: i3c-master-msm-geni: Fix IBI for invalid device OR handler"")'from msm-5.15 branch. Change-Id: I958bcbda1136fb7b7e6d957f303af8cf7773322e Signed-off-by: Peng Yang <quic_penyan@quicinc.com>
22 lines
385 B
C
22 lines
385 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
static int __init gh_arm_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
module_init(gh_arm_init);
|
|
|
|
static void __exit gh_arm_exit(void)
|
|
{
|
|
}
|
|
module_exit(gh_arm_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Qualcomm Technologies, Inc. Gunyah ARM64 Driver");
|