CHROMIUM: drm: add helpers for fence and reservation based dma-buf sync
[firefly-linux-kernel-4.4.55.git] / drivers / mtk_wcn_combo / Makefile
1 # Copyright Statement:
2 #
3 # This software/firmware and related documentation ("MediaTek Software") are
4 # protected under relevant copyright laws. The information contained herein
5 # is confidential and proprietary to MediaTek Inc. and/or its licensors.
6 # Without the prior written permission of MediaTek inc. and/or its licensors,
7 # any reproduction, modification, use or disclosure of MediaTek Software,
8 # and information contained herein, in whole or in part, shall be strictly prohibited.
9 #
10 # MediaTek Inc. (C) 2010. All rights reserved.
11 #
12 # BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
13 # THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
14 # RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
15 # AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
16 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
17 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
18 # NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
19 # SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
20 # SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
21 # THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
22 # THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
23 # CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
24 # SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
25 # STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
26 # CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
27 # AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
28 # OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
29 # MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
30 #
31 # The following software/firmware and/or related documentation ("MediaTek Software")
32 # have been modified by MediaTek Inc. All revisions are subject to any receiver's
33 # applicable license agreements with MediaTek Inc.
34
35
36 # combo driver: MT6620
37 # If KERNELRELEASE is defined, we've been invoked from the
38 # kernel build system and can use its language.
39 ifneq ($(KERNELRELEASE),)
40         #subdir-ccflags-y can be used in 2.6.34 in the future
41         #subdir-ccflags-y += -I$(src)/common/include -I$(src)/common/linux/include 
42         #used for binary release script
43     #KERNEL_PATH := $(pwd)
44     #OBJ_PATH := $(pwd)  
45         obj-$(CONFIG_MTK_COMBO) += common/
46         obj-$(CONFIG_MTK_COMBO_FM) += drv_fm/
47         obj-$(CONFIG_MTK_COMBO_WIFI) += drv_wlan/
48
49         #Use BT HCI driver
50         obj-$(CONFIG_MTK_COMBO_BT_HCI) += drv_bt/
51         obj-$(CONFIG_MTK_GPS) += gps/
52
53 # Otherwise we were called directly from the command
54 # line; invoke the kernel build system.
55 else
56         KERNELDIR ?= /lib/modules/$(shell uname -r)/build
57         PWD  := $(shell pwd)
58 default:
59         $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
60 endif