techpack: video: add makefile for video driver

This change adds dummy Makefile support to compile
video driver project along with base kernel.

Change-Id: Ia1fad0785131d3a8852b8d7dcf713b537e9fa4d1
Signed-off-by: Shivendra Kakrania <shiven@codeaurora.org>
This commit is contained in:
Shivendra Kakrania 2019-05-01 19:45:07 -07:00
parent 7eb9a06ef5
commit 623f36a95c
2 changed files with 11 additions and 0 deletions

3
Makefile Normal file
View File

@ -0,0 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-only
ccflags-y := -Wno-unused-function
obj-y := vid.o

8
vid.c Normal file
View File

@ -0,0 +1,8 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
*/
static void _vid_techpack_stub(void)
{
}