Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/caif/caif_hsi.c drivers/net/usb/qmi_wwan.c The qmi_wwan merge was trivial. The caif_hsi.c, on the other hand, was not. It's a conflict between1c385f1fdf
("caif-hsi: Replace platform device with ops structure.") in the net-next tree and commit39abbaef19
("caif-hsi: Postpone init of HIS until open()") in the net tree. I did my best with that one and will ask Sjur to check it out. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -939,12 +939,12 @@ static int __devinit flexcan_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(pinctrl);
|
||||
|
||||
if (pdev->dev.of_node) {
|
||||
const u32 *clock_freq_p;
|
||||
const __be32 *clock_freq_p;
|
||||
|
||||
clock_freq_p = of_get_property(pdev->dev.of_node,
|
||||
"clock-frequency", NULL);
|
||||
if (clock_freq_p)
|
||||
clock_freq = *clock_freq_p;
|
||||
clock_freq = be32_to_cpup(clock_freq_p);
|
||||
}
|
||||
|
||||
if (!clock_freq) {
|
||||
|
Reference in New Issue
Block a user