diff options
| -rw-r--r-- | arch/arc/Kconfig | 1 | ||||
| -rw-r--r-- | arch/arc/boot/dts/axs10x_mb.dtsi | 8 | ||||
| -rw-r--r-- | arch/arc/configs/axs103_defconfig | 1 | ||||
| -rw-r--r-- | arch/arc/configs/axs103_smp_defconfig | 1 | ||||
| -rw-r--r-- | arch/arc/include/asm/fb.h | 19 |
5 files changed, 21 insertions, 9 deletions
diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig index 208aae071b37..12d0284a46e5 100644 --- a/arch/arc/Kconfig +++ b/arch/arc/Kconfig | |||
| @@ -593,7 +593,6 @@ config PCI_SYSCALL | |||
| 593 | def_bool PCI | 593 | def_bool PCI |
| 594 | 594 | ||
| 595 | source "drivers/pci/Kconfig" | 595 | source "drivers/pci/Kconfig" |
| 596 | source "drivers/pci/pcie/Kconfig" | ||
| 597 | 596 | ||
| 598 | endmenu | 597 | endmenu |
| 599 | 598 | ||
diff --git a/arch/arc/boot/dts/axs10x_mb.dtsi b/arch/arc/boot/dts/axs10x_mb.dtsi index ab5d5701e11d..44a578c10732 100644 --- a/arch/arc/boot/dts/axs10x_mb.dtsi +++ b/arch/arc/boot/dts/axs10x_mb.dtsi | |||
| @@ -47,14 +47,6 @@ | |||
| 47 | clocks = <&apbclk>; | 47 | clocks = <&apbclk>; |
| 48 | clock-names = "stmmaceth"; | 48 | clock-names = "stmmaceth"; |
| 49 | max-speed = <100>; | 49 | max-speed = <100>; |
| 50 | mdio0 { | ||
| 51 | #address-cells = <1>; | ||
| 52 | #size-cells = <0>; | ||
| 53 | compatible = "snps,dwmac-mdio"; | ||
| 54 | phy1: ethernet-phy@1 { | ||
| 55 | reg = <1>; | ||
| 56 | }; | ||
| 57 | }; | ||
| 58 | }; | 50 | }; |
| 59 | 51 | ||
| 60 | ehci@0x40000 { | 52 | ehci@0x40000 { |
diff --git a/arch/arc/configs/axs103_defconfig b/arch/arc/configs/axs103_defconfig index f8b396c9aedb..491b3b5f22bd 100644 --- a/arch/arc/configs/axs103_defconfig +++ b/arch/arc/configs/axs103_defconfig | |||
| @@ -42,6 +42,7 @@ CONFIG_DEVTMPFS=y | |||
| 42 | # CONFIG_STANDALONE is not set | 42 | # CONFIG_STANDALONE is not set |
| 43 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | 43 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set |
| 44 | # CONFIG_FIRMWARE_IN_KERNEL is not set | 44 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
| 45 | CONFIG_BLK_DEV_LOOP=y | ||
| 45 | CONFIG_SCSI=y | 46 | CONFIG_SCSI=y |
| 46 | CONFIG_BLK_DEV_SD=y | 47 | CONFIG_BLK_DEV_SD=y |
| 47 | CONFIG_NETDEVICES=y | 48 | CONFIG_NETDEVICES=y |
diff --git a/arch/arc/configs/axs103_smp_defconfig b/arch/arc/configs/axs103_smp_defconfig index 56128ea2b748..b25ee73b2e79 100644 --- a/arch/arc/configs/axs103_smp_defconfig +++ b/arch/arc/configs/axs103_smp_defconfig | |||
| @@ -43,6 +43,7 @@ CONFIG_DEVTMPFS=y | |||
| 43 | # CONFIG_STANDALONE is not set | 43 | # CONFIG_STANDALONE is not set |
| 44 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | 44 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set |
| 45 | # CONFIG_FIRMWARE_IN_KERNEL is not set | 45 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
| 46 | CONFIG_BLK_DEV_LOOP=y | ||
| 46 | CONFIG_SCSI=y | 47 | CONFIG_SCSI=y |
| 47 | CONFIG_BLK_DEV_SD=y | 48 | CONFIG_BLK_DEV_SD=y |
| 48 | CONFIG_NETDEVICES=y | 49 | CONFIG_NETDEVICES=y |
diff --git a/arch/arc/include/asm/fb.h b/arch/arc/include/asm/fb.h new file mode 100644 index 000000000000..bd3f68c9ddfc --- /dev/null +++ b/arch/arc/include/asm/fb.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #ifndef _ASM_FB_H_ | ||
| 2 | #define _ASM_FB_H_ | ||
| 3 | |||
| 4 | #include <linux/fb.h> | ||
| 5 | #include <linux/fs.h> | ||
| 6 | #include <asm/page.h> | ||
| 7 | |||
| 8 | static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma, | ||
| 9 | unsigned long off) | ||
| 10 | { | ||
| 11 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); | ||
| 12 | } | ||
| 13 | |||
| 14 | static inline int fb_is_primary_device(struct fb_info *info) | ||
| 15 | { | ||
| 16 | return 0; | ||
| 17 | } | ||
| 18 | |||
| 19 | #endif /* _ASM_FB_H_ */ | ||
