Skip to content

Commit

Permalink
Staging: hv: remove Sources.c
Browse files Browse the repository at this point in the history
It's a .c file including other .c files, ick.
Remove that mess now that the header files are unwound.

Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Sep 15, 2009
1 parent 3523a80 commit a0086dc
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 34 deletions.
1 change: 1 addition & 0 deletions drivers/staging/hv/Channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/

#include <linux/kernel.h>
#include <linux/mm.h>
#include "include/osd.h"
#include "include/logging.h"

Expand Down
4 changes: 4 additions & 0 deletions drivers/staging/hv/ChannelInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
*
*/

#include <linux/kernel.h>
#include <linux/mm.h>
#include "include/osd.h"

#include "VmbusPrivate.h"

static int
Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/hv/ChannelMgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
*/


#include <linux/kernel.h>
#include <linux/mm.h>
#include "include/osd.h"
#include "include/logging.h"

Expand Down
4 changes: 3 additions & 1 deletion drivers/staging/hv/Connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
*/


#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include "include/logging.h"

#include "VmbusPrivate.h"

/* Globals */
Expand Down
3 changes: 2 additions & 1 deletion drivers/staging/hv/Hv.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
*
*/

#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <asm/io.h>
#include "include/logging.h"
#include "VmbusPrivate.h"

Expand Down
4 changes: 3 additions & 1 deletion drivers/staging/hv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o
obj-$(CONFIG_HYPERV_BLOCK) += hv_blkvsc.o
obj-$(CONFIG_HYPERV_NET) += hv_netvsc.o

hv_vmbus-objs := vmbus_drv.o osd.o Sources.o
hv_vmbus-objs := vmbus_drv.o osd.o \
Vmbus.o Hv.o Connection.o Channel.o \
ChannelMgmt.o ChannelInterface.o RingBuffer.o
hv_storvsc-objs := storvsc_drv.o StorVsc.o
hv_blkvsc-objs := blkvsc_drv.o BlkVsc.o
hv_netvsc-objs := netvsc_drv.o NetVsc.o RndisFilter.o
3 changes: 2 additions & 1 deletion drivers/staging/hv/RingBuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
*
*/


#include <linux/kernel.h>
#include <linux/mm.h>
#include "include/logging.h"
#include "RingBuffer.h"

Expand Down
30 changes: 0 additions & 30 deletions drivers/staging/hv/Sources.c

This file was deleted.

0 comments on commit a0086dc

Please sign in to comment.