staging/gdm724x: fix "alignment should match open parenthesis" issues
Fix checkpatch issues: "CHECK: Alignment should match open parenthesis" Signed-off-by: Bruno Carvalho <brunocarvalhofarias@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3cbe6a1c1a
commit
47678e3792
|
@ -278,8 +278,9 @@ static void gdm_mux_rcv_complete(struct urb *urb)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int gdm_mux_recv(void *priv_dev, int (*cb)(void *data, int len,
|
static int gdm_mux_recv(void *priv_dev,
|
||||||
int tty_index, struct tty_dev *tty_dev, int complete))
|
int (*cb)(void *data, int len, int tty_index,
|
||||||
|
struct tty_dev *tty_dev, int complete))
|
||||||
{
|
{
|
||||||
struct mux_dev *mux_dev = priv_dev;
|
struct mux_dev *mux_dev = priv_dev;
|
||||||
struct usb_device *usbdev = mux_dev->usbdev;
|
struct usb_device *usbdev = mux_dev->usbdev;
|
||||||
|
|
|
@ -88,7 +88,8 @@ static void netlink_rcv(struct sk_buff *skb)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct sock *netlink_init(int unit,
|
struct sock *netlink_init(int unit,
|
||||||
void (*cb)(struct net_device *dev, u16 type, void *msg, int len))
|
void (*cb)(struct net_device *dev, u16 type,
|
||||||
|
void *msg, int len))
|
||||||
{
|
{
|
||||||
struct sock *sock;
|
struct sock *sock;
|
||||||
struct netlink_kernel_cfg cfg = {
|
struct netlink_kernel_cfg cfg = {
|
||||||
|
|
Loading…
Reference in New Issue