aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mvp/pvtcpkm/comm_svc.h
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:30:23 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:30:23 +0100
commit2ecd9abf516e5e4afc482eb0329f9304aed285b4 (patch)
treea2980c05f50df82d6d043e4e44ecaf2023220870 /arch/arm/mvp/pvtcpkm/comm_svc.h
parent698f3e8de2f0104dc80402ea151aae73b946a2d9 (diff)
parenta04b065c010280ed1806c73cb234a2bf657a5ce9 (diff)
downloadkernel_samsung_smdk4412-2ecd9abf516e5e4afc482eb0329f9304aed285b4.zip
kernel_samsung_smdk4412-2ecd9abf516e5e4afc482eb0329f9304aed285b4.tar.gz
kernel_samsung_smdk4412-2ecd9abf516e5e4afc482eb0329f9304aed285b4.tar.bz2
Merge branch 'cm-13.0' of https://github.com/CyanogenMod/android_kernel_samsung_smdk4412 into replicant-6.0
Diffstat (limited to 'arch/arm/mvp/pvtcpkm/comm_svc.h')
-rw-r--r--arch/arm/mvp/pvtcpkm/comm_svc.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/arch/arm/mvp/pvtcpkm/comm_svc.h b/arch/arm/mvp/pvtcpkm/comm_svc.h
deleted file mode 100644
index 784ec76..0000000
--- a/arch/arm/mvp/pvtcpkm/comm_svc.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Linux 2.6.32 and later Kernel module for VMware MVP PVTCP Server
- *
- * Copyright (C) 2010-2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; see the file COPYING. If not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-#line 5
-
-/**
- * @file
- *
- * @brief Communication functions exported by the comm_rt module.
- */
-
-#ifndef _COMM_SVC_H_
-#define _COMM_SVC_H_
-
-#define INCLUDE_ALLOW_MODULE
-#define INCLUDE_ALLOW_PV
-#define INCLUDE_ALLOW_GPL
-#include "include_check.h"
-
-#include "comm.h"
-
-int CommSvc_RegisterImpl(const CommImpl *impl);
-void CommSvc_UnregisterImpl(const CommImpl *impl);
-int CommSvc_Zombify(CommChannel channel, int inBH);
-int CommSvc_IsActive(CommChannel channel);
-CommTranspInitArgs CommSvc_GetTranspInitArgs(CommChannel channel);
-void *CommSvc_GetState(CommChannel channel);
-void CommSvc_Put(CommChannel channel);
-void CommSvc_DispatchUnlock(CommChannel channel);
-int CommSvc_Lock(CommChannel channel);
-void CommSvc_Unlock(CommChannel channel);
-int CommSvc_ScheduleAIOWork(CommOSWork *work);
-
-int
-CommSvc_Alloc(const CommTranspInitArgs *transpArgs,
- const CommImpl *impl,
- int inBH,
- CommChannel *newChannel);
-
-int
-CommSvc_Write(CommChannel channel,
- const CommPacket *packet,
- unsigned long long *timeoutMillis);
-
-int
-CommSvc_WriteVec(CommChannel channel,
- const CommPacket *packet,
- struct kvec **vec,
- unsigned int *vecLen,
- unsigned long long *timeoutMillis,
- unsigned int *iovOffset);
-
-unsigned int CommSvc_RequestInlineEvents(CommChannel channel);
-unsigned int CommSvc_ReleaseInlineEvents(CommChannel channel);
-
-#endif // _COMM_SVC_H_