Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ccd7de6 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by David S. Miller
Browse files

VSOCK: get rid of vsock_version.h



There isn't really a need to have a separate file for it.

Acked-by: default avatarAndy King <acking@vmware.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@vmware.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7777ac38
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -98,7 +98,6 @@
#include <net/sock.h>
#include <net/sock.h>


#include "af_vsock.h"
#include "af_vsock.h"
#include "vsock_version.h"


static int __vsock_bind(struct sock *sk, struct sockaddr_vm *addr);
static int __vsock_bind(struct sock *sk, struct sockaddr_vm *addr);
static void vsock_sk_destruct(struct sock *sk);
static void vsock_sk_destruct(struct sock *sk);
@@ -2009,5 +2008,5 @@ EXPORT_SYMBOL_GPL(vsock_core_exit);


MODULE_AUTHOR("VMware, Inc.");
MODULE_AUTHOR("VMware, Inc.");
MODULE_DESCRIPTION("VMware Virtual Socket Family");
MODULE_DESCRIPTION("VMware Virtual Socket Family");
MODULE_VERSION(VSOCK_DRIVER_VERSION_STRING);
MODULE_VERSION("1.0.0.0-k");
MODULE_LICENSE("GPL v2");
MODULE_LICENSE("GPL v2");

net/vmw_vsock/vsock_version.h

deleted100644 → 0
+0 −22
Original line number Original line Diff line number Diff line
/*
 * VMware vSockets Driver
 *
 * Copyright (C) 2011-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 as published by the Free
 * Software Foundation version 2 and no later version.
 *
 * 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.
 */

#ifndef _VSOCK_VERSION_H_
#define _VSOCK_VERSION_H_

#define VSOCK_DRIVER_VERSION_PARTS	{ 1, 0, 0, 0 }
#define VSOCK_DRIVER_VERSION_STRING	"1.0.0.0-k"

#endif /* _VSOCK_VERSION_H_ */