linux/drivers/staging/hv
Nicolas Palix 0b3f683488 Staging: hv: Remove typedef STORVSC_REQUEST and PSTORVSC_REQUEST
typedef STORVSC_REQUEST and PSTORVSC_REQUEST are removed and their
usages are replace by the use of struct hv_storvsc_request and
struct hv_storvsc_request * respectively.

Here is the semantic patch generated to perform this transformation:
(http://coccinelle.lip6.fr/)

//<smpl>
@rm_STORVSC_REQUEST@
@@
-typedef struct _STORVSC_REQUEST
+struct hv_storvsc_request
{...}
-STORVSC_REQUEST
;

@rm_PSTORVSC_REQUEST@
@@
-typedef struct _STORVSC_REQUEST *PSTORVSC_REQUEST;
+struct hv_storvsc_request;

@fixtypedef_STORVSC_REQUEST@
typedef STORVSC_REQUEST;
@@
-STORVSC_REQUEST
+struct hv_storvsc_request

@fixstruct__STORVSC_REQUEST@
@@
struct
-_STORVSC_REQUEST
+hv_storvsc_request

@fixtypedef_PSTORVSC_REQUEST@
typedef PSTORVSC_REQUEST;
@@
-PSTORVSC_REQUEST
+struct hv_storvsc_request*
//</smpl>

Signed-off-by: Nicolas Palix <npalix@diku.dk>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2009-09-15 12:01:52 -07:00
..
include Staging: hv: Remove typedef STORVSC_REQUEST and PSTORVSC_REQUEST 2009-09-15 12:01:52 -07:00
BlkVsc.c Staging: hv: Remove typedef DRIVER_OBJECT and PDRIVER_OBJECT 2009-09-15 12:01:52 -07:00
Channel.c Staging: hv: properly fix the printk() warnings 2009-09-15 12:01:52 -07:00
Channel.h Staging: hv: remove VMBUS_CHANNEL_PACKET_MULITPAGE_BUFFER typedef 2009-09-15 12:01:51 -07:00
ChannelInterface.c Staging: hv: Transform PDEVICE_OBJECT and DEVICE_OBJECT typedefs into their corresponding structs 2009-09-15 12:01:51 -07:00
ChannelInterface.h Staging: hv: Transform PDEVICE_OBJECT and DEVICE_OBJECT typedefs into their corresponding structs 2009-09-15 12:01:51 -07:00
ChannelMgmt.c Staging: hv: Remove C99 comments 2009-09-15 12:01:50 -07:00
ChannelMgmt.h Staging: hv remove TIMER typedef 2009-09-15 12:01:52 -07:00
Connection.c Staging: hv: remove VMBUS_CONNECTION typedef 2009-09-15 12:01:51 -07:00
Hv.c Staging: hv: remove HANDLE typedef 2009-09-15 12:01:52 -07:00
Hv.h Staging: hv: remove HANDLE typedef 2009-09-15 12:01:52 -07:00
Kconfig Staging: hv: force hyper-v drivers to be built as a module 2009-09-15 12:01:49 -07:00
Makefile Staging: hv: add the Hyper-V virtual network driver to the build 2009-09-15 12:01:45 -07:00
NetVsc.c Staging: hv: Remove typedef NETVSC_PACKET and PNETVSC_PACKET 2009-09-15 12:01:52 -07:00
NetVsc.h Staging: hv: Remove typedef NETVSC_PACKET and PNETVSC_PACKET 2009-09-15 12:01:52 -07:00
RingBuffer.c Staging: hv: Remove C99 comments 2009-09-15 12:01:50 -07:00
RingBuffer.h Staging: hv: Remove C99 comments 2009-09-15 12:01:50 -07:00
RndisFilter.c Staging: hv: Remove typedef NETVSC_PACKET and PNETVSC_PACKET 2009-09-15 12:01:52 -07:00
RndisFilter.h Staging: hv: Remove C99 comments 2009-09-15 12:01:50 -07:00
Sources.c Staging: hv: Remove compatibility ifdefry 2009-09-15 12:01:49 -07:00
StorVsc.c Staging: hv: Remove typedef STORVSC_REQUEST and PSTORVSC_REQUEST 2009-09-15 12:01:52 -07:00
TODO Staging: hv: Remove compatibility ifdefry 2009-09-15 12:01:49 -07:00
VersionInfo.h Staging: hv: add the Hyper-V virtual bus 2009-09-15 12:01:43 -07:00
Vmbus.c Staging: hv: Remove typedef DRIVER_OBJECT and PDRIVER_OBJECT 2009-09-15 12:01:52 -07:00
VmbusPrivate.h Staging: hv: remove WAITEVENT typedef 2009-09-15 12:01:52 -07:00
blkvsc_drv.c Staging: hv: Remove typedef STORVSC_REQUEST and PSTORVSC_REQUEST 2009-09-15 12:01:52 -07:00
netvsc_drv.c Staging: hv: Remove typedef NETVSC_PACKET and PNETVSC_PACKET 2009-09-15 12:01:52 -07:00
osd.c Staging: hv remove TIMER typedef 2009-09-15 12:01:52 -07:00
storvsc_drv.c Staging: hv: Remove typedef STORVSC_REQUEST and PSTORVSC_REQUEST 2009-09-15 12:01:52 -07:00
vmbus_drv.c Staging: hv: Remove typedef DRIVER_OBJECT and PDRIVER_OBJECT 2009-09-15 12:01:52 -07:00