Skip to content

Commit c841c70

Browse files
committed
Merge pull request linux4kix#8 from linux4kix/linux-linaro-lsk-v3.14-mx6
Various small fixups
2 parents e85332f + 4354226 commit c841c70

File tree

6 files changed

+821
-7
lines changed

6 files changed

+821
-7
lines changed

arch/arm/boot/dts/imx6qdl-hummingboard.dtsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@
153153
sgtl5000: sgtl5000@0a {
154154
clocks = <&clks 201>;
155155
compatible = "fsl,sgtl5000";
156-
pinctrl-names = "default";
157156
pinctrl-0 = <&pinctrl_hummingboard_sgtl5000>;
157+
pinctrl-names = "default";
158158
reg = <0x0a>;
159159
VDDA-supply = <&reg_3p3v>;
160160
VDDIO-supply = <&reg_3p3v>;
@@ -336,4 +336,6 @@
336336
>;
337337
reset-gpio = <&gpio3 4 0>;
338338
status = "okay";
339+
no-msi;
339340
};
341+

drivers/pci/host/pci-imx6.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include <linux/types.h>
3030
#include <linux/busfreq-imx6.h>
3131

32+
#include "../pci.h"
3233
#include "pcie-designware.h"
3334

3435
#define to_imx6_pcie(x) container_of(x, struct imx6_pcie, pp)
@@ -867,6 +868,9 @@ static int __init imx6_pcie_probe(struct platform_device *pdev)
867868
goto err;
868869
}
869870

871+
if (of_find_property(np, "no-msi", NULL))
872+
pci_no_msi();
873+
870874
if (IS_ENABLED(CONFIG_EP_MODE_IN_EP_RC_SYS)) {
871875
if (IS_ENABLED(CONFIG_EP_SELF_IO_TEST)) {
872876
/* Prepare the test regions and data */

drivers/staging/media/lirc/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ config LIRC_PARALLEL
3838
help
3939
Driver for Homebrew Parallel Port Receivers
4040

41+
config LIRC_GPIO
42+
tristate "Homebrew GPIO Port Receiver/Transmitter"
43+
depends on LIRC
44+
help
45+
Driver for Homebrew GPIO Port Receiver/Transmitter
46+
4147
config LIRC_SASEM
4248
tristate "Sasem USB IR Remote"
4349
depends on LIRC && USB

0 commit comments

Comments
 (0)