Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / neststruct.res
1 struct usb_hub {
2 union {
3 struct usb_hub_status hub;
4 struct usb_port_status port;
5 } *status; /* buffer for status reports */
6
7 };
8
9 static int hub_configure(struct usb_hub *hub)
10 {
11 hub->status = kzalloc(sizeof(*hub->status), GFP_KERNEL);
12
13 }