This fixes " Alignment should match open parenthesis" messages from checkpatch.pl
Signed-off-by: Bogicevic Sasa <[email protected]> --- drivers/staging/wlan-ng/prism2usb.c | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/drivers/staging/wlan-ng/prism2usb.c b/drivers/staging/wlan-ng/prism2usb.c index e92bbc1..9167f6e 100644 --- a/drivers/staging/wlan-ng/prism2usb.c +++ b/drivers/staging/wlan-ng/prism2usb.c @@ -46,12 +46,18 @@ static struct usb_device_id usb_prism_tbl[] = { PRISM_DEV(0x124a, 0x4017, "Pheenet WL-503IA 802.11b USB Adapter"), PRISM_DEV(0x0bb2, 0x0302, "Ambit Microsystems Corp."), PRISM_DEV(0x9016, 0x182d, "Sitecom WL-022 802.11b USB Adapter"), - PRISM_DEV(0x0543, 0x0f01, - "ViewSonic Airsync USB Adapter 11Mbps (Prism2.5)"), - PRISM_DEV(0x067c, 0x1022, - "Siemens SpeedStream 1022 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x049f, 0x0033, - "Compaq/Intel W100 PRO/Wireless 11Mbps multiport WLAN Adapter"), + PRISM_DEV( + 0x0543, 0x0f01, + "ViewSonic Airsync USB Adapter 11Mbps (Prism2.5)" + ), + PRISM_DEV( + 0x067c, 0x1022, + "Siemens SpeedStream 1022 11Mbps WLAN USB Adapter" + ), + PRISM_DEV( + 0x049f, 0x0033, + "Compaq/Intel W100 PRO/Wireless 11Mbps multiport WLAN Adapter" + ), { } /* terminator */ }; MODULE_DEVICE_TABLE(usb, usb_prism_tbl); @@ -223,8 +229,10 @@ exit: } #ifdef CONFIG_PM -static int prism2sta_suspend(struct usb_interface *interface, - pm_message_t message) +static int prism2sta_suspend( + struct usb_interface *interface, + pm_message_t message + ) { hfa384x_t *hw = NULL; wlandevice_t *wlandev; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

