Commit 10a0e2e2 authored by Elena Oat's avatar Elena Oat Committed by Greg Kroah-Hartman

Staging: sbe-2t3e3: Fix the error of (foo*) should be (foo *).

This patch fixes an error in 2t3e3.h that (foo*) should be (foo *).
Signed-off-by: default avatarElena Oat <oat.elena@gmail.com>
Acked-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f6250023
......@@ -838,7 +838,7 @@ static inline int has_two_ports(struct pci_dev *pdev)
return pdev->subsystem_device == PCI_SUBDEVICE_ID_SBE_2T3E3_P0;
}
#define dev_to_priv(dev) (*(struct channel **) ((hdlc_device*)(dev) + 1))
#define dev_to_priv(dev) (*(struct channel **) ((hdlc_device *)(dev) + 1))
static inline u32 dc_read(unsigned long addr, u32 reg)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment