linux-m68k.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2015-01-16 09:08:45 to 2015-03-03 03:33:31 UTC [more...]

[PATCH v4 01/30] PCI: Rip out pci_bus_add_devices() from pci_scan_bus()
 2015-03-03  3:33 UTC  (47+ messages)
` [PATCH v4 02/30] PCI: Rip out pci_bus_add_devices() from pci_scan_root_bus()
` [PATCH v4 03/30] xen/PCI: Don't use deprecated function pci_scan_bus_parented()
` [PATCH v4 04/30] PCI: Remove deprecated pci_scan_bus_parented()
` [PATCH v4 05/30] PCI: Rename pci_scan_bus() to pci_scan_bus_legacy()
` [PATCH v4 06/30] PCI: Combine PCI domain and bus number in u32 arg
` [PATCH v4 07/30] PCI: Pass PCI domain number combined with root bus number
` [PATCH v4 08/30] PCI: Introduce pci_host_assign_domain_nr() to assign domain
` [PATCH v4 09/30] PCI: Separate pci_host_bridge creation out of pci_create_root_bus()
` [PATCH v4 10/30] PCI: Introduce pci_host_bridge_list to manage host bridges
` [PATCH v4 11/30] PCI: Save sysdata in pci_host_bridge drvdata
` [PATCH v4 12/30] PCI: Introduce pci_host_bridge_ops to support host specific operations
` [PATCH v4 13/30] PCI: Introduce new scan function pci_scan_root_bridge()
` [PATCH v4 14/30] PCI/x86: Refine pci_acpi_scan_root() with generic pci_host_bridge
` [PATCH v4 15/30] PCI/IA64: "
` [PATCH v4 16/30] PCI/IA64: Fix the build warning about pci_domain_nr()
` [PATCH v4 17/30] PCI/powerpc: Rename pcibios_root_bridge_prepare()
` [PATCH v4 18/30] PCI/powerpc: Use pci_scan_root_bridge() for simplicity
` [PATCH v4 19/30] PCI: Remove weak pcibios_root_bridge_prepare()
` [PATCH v4 20/30] PCI/sparc: Use pci_scan_root_bridge() for simplicity
` [PATCH v4 21/30] PCI: Introduce pci_bus_child_max_busnr()
` [PATCH v4 22/30] PCI/Parisc: Use pci_scan_root_bus() for simplicity
` [PATCH v4 23/30] PCI/mvebu: Use pci_common_init_dev() to simplify code
` [PATCH v4 24/30] PCI/tegra: Remove redundant tegra_pcie_scan_bus()
` [PATCH v4 25/30] PCI/designware: Use pci_scan_root_bus() for simplicity
` [PATCH v4 26/30] PCI/xgene: Use pci_scan_root_bus() instead of pci_create_root_bus()
` [PATCH v4 27/30] PCI: Rename __pci_create_root_bus() to pci_create_root_bus()
` [PATCH v4 28/30] PCI: Export find_pci_host_bridge()
` [PATCH v4 29/30] PCI: Remove platform specific pci_domain_nr()
` [PATCH v4 30/30] PCI: Remove pci_bus_assign_domain_nr()
` [PATCH v4 00/30] Refine PCI scan interfaces and make generic pci host bridge

Confidential Letter
 2015-03-02  0:34 UTC 

[PATCH v3 01/30] PCI: Rip out pci_bus_add_devices() from pci_scan_bus()
 2015-02-26  8:23 UTC  (32+ messages)
` [PATCH v3 02/30] PCI: Rip out pci_bus_add_devices() from pci_scan_root_bus()
` [PATCH v3 03/30] xen/PCI: Don't use deprecated function pci_scan_bus_parented()
` [PATCH v3 04/30] PCI: Remove deprecated pci_scan_bus_parented()
` [PATCH v3 05/30] PCI: Rename pci_scan_bus() to pci_scan_bus_legacy()
` [PATCH v3 06/30] PCI: Combine PCI domain and bus number in u32 arg
` [PATCH v3 07/30] PCI: Pass PCI domain number combined with root bus number
` [PATCH v3 08/30] PCI: Introduce pci_host_assign_domain_nr() to assign domain
` [PATCH v3 09/30] PCI: Separate pci_host_bridge creation out of pci_create_root_bus()
` [PATCH v3 10/30] PCI: Introduce pci_host_bridge_list to manage host bridges
` [PATCH v3 11/30] PCI: Save sysdata in pci_host_bridge drvdata
` [PATCH v3 12/30] PCI: Introduce pci_host_bridge_ops to support host specific operations
` [PATCH v3 13/30] PCI: Introduce new scan function pci_scan_root_bridge()
` [PATCH v3 14/30] PCI/x86: Refine pci_acpi_scan_root() with generic pci_host_bridge
` [PATCH v3 15/30] PCI/IA64: "
` [PATCH v3 16/30] PCI/IA64: Fix the build warning about pci_domain_nr()
` [PATCH v3 17/30] PCI/powerpc: Rename pcibios_root_bridge_prepare()
` [PATCH v3 18/30] PCI/powerpc: Use pci_scan_root_bridge() for simplicity
` [PATCH v3 19/30] PCI: Remove weak pcibios_root_bridge_prepare()
` [PATCH v3 20/30] PCI/sparc: Use pci_scan_root_bridge() for simplicity
` [PATCH v3 21/30] PCI: Introduce pci_bus_child_max_busnr()
` [PATCH v3 22/30] PCI/Parisc: Use pci_scan_root_bus() for simplicity
` [PATCH v3 23/30] PCI/mvebu: Use pci_common_init_dev() to simplify code
` [PATCH v3 24/30] PCI/tegra: Remove redundant tegra_pcie_scan_bus()
` [PATCH v3 25/30] PCI/designware: Use pci_scan_root_bus() for simplicity
` [PATCH v3 26/30] PCI/xgene: Use pci_scan_root_bus() instead of pci_create_root_bus()
` [PATCH v3 27/30] PCI: Rename __pci_create_root_bus() to pci_create_root_bus()
` [PATCH v3 28/30] PCI: Export find_pci_host_bridge()
` [PATCH v3 29/30] PCI: Remove platform specific pci_domain_nr()
` [PATCH v3 30/30] PCI: Remove pci_bus_assign_domain_nr()
` [PATCH v3 00/30] Refine PCI scan interfaces and make generic pci host bridge

[PATCH v4 00/30] Refine PCI scan interfaces and make generic pci host bridge
 2015-02-26  8:11 UTC 

[PATCH v3 00/30] Refine PCI scan interfaces and make generic pci host bridge
 2015-02-26  1:29 UTC 

[PATCH v2 01/30] PCI: Rip out pci_bus_add_devices() from pci_scan_bus()
 2015-02-26  0:54 UTC  (45+ messages)
` [PATCH v2 02/30] PCI: Rip out pci_bus_add_devices() from pci_scan_root_bus()
` [PATCH v2 03/30] xen/PCI: Don't use deprecated function pci_scan_bus_parented()
` [PATCH v2 04/30] PCI: Remove deprecated pci_scan_bus_parented()
` [PATCH v2 05/30] PCI: Rename pci_scan_bus() to pci_scan_bus_legacy()
` [PATCH v2 06/30] PCI: Combine PCI domain and bus number in u32 arg
` [PATCH v2 07/30] PCI: Pass PCI domain number combined with root bus number
` [PATCH v2 08/30] PCI: Introduce pci_host_assign_domain_nr() to assign domain
` [PATCH v2 09/30] PCI: Separate pci_host_bridge creation out of pci_create_root_bus()
` [PATCH v2 10/30] PCI: Introduce pci_host_bridge_list to manage host bridges
` [PATCH v2 11/30] PCI: Save sysdata in pci_host_bridge drvdata
` [PATCH v2 12/30] PCI: Introduce pci_host_bridge_ops to support host specific operations
` [PATCH v2 13/30] PCI: Introduce new scan function pci_scan_root_bridge()
` [PATCH v2 14/30] PCI/x86: Refine pci_acpi_scan_root() with generic pci_host_bridge
` [PATCH v2 15/30] PCI/IA64: "
` [PATCH v2 16/30] PCI/IA64: Fix the build warning about pci_domain_nr()
` [PATCH v2 17/30] PCI/powerpc: Rename pcibios_root_bridge_prepare()
` [PATCH v2 18/30] PCI/powerpc: Use pci_scan_root_bridge() for simplicity
` [PATCH v2 19/30] PCI: Remove weak pcibios_root_bridge_prepare()
` [PATCH v2 20/30] PCI/sparc: Use pci_scan_root_bridge() for simplicity
` [PATCH v2 21/30] PCI: Introduce pci_bus_child_max_busnr()
` [PATCH v2 22/30] PCI/Parisc: Use pci_scan_root_bus() for simplicity
` [PATCH v2 23/30] PCI/mvebu: Use pci_common_init_dev() to simplify code
` [PATCH v2 24/30] PCI/tegra: Remove redundant tegra_pcie_scan_bus()
` [PATCH v2 25/30] PCI/designware: Use pci_scan_root_bus() for simplicity
` [PATCH v2 26/30] PCI/xgene: Use pci_scan_root_bus() instead of pci_create_root_bus()
` [PATCH v2 27/30] PCI: Rename __pci_create_root_bus() to pci_create_root_bus()
` [PATCH v2 28/30] PCI: Export find_pci_host_bridge()
` [PATCH v2 29/30] PCI: Remove platform specific pci_domain_nr()
` [PATCH v2 30/30] PCI: Remove pci_bus_assign_domain_nr()
` [PATCH v2 00/30] Refine PCI scan interfaces and make generic pci host bridge

[PATCH] m68k/defconfig: Update defconfigs for v4.0-rc1
 2015-02-23 10:23 UTC 

[PATCH] m68k/q40: Make NE2000 builtin instead of modular
 2015-02-23 10:20 UTC 

work with
 2015-02-17  6:35 UTC 

[git pull] m68knommu arch fixes for 3.20
 2015-02-16  3:52 UTC 

[git pull] m68knommu arch fixes for 3.20
 2015-02-16  4:02 UTC 

[git pull] m68k updates for 3.20 (fixed branch due to forgotten pull)
 2015-02-09 15:30 UTC 

[git pull] m68k updates for 3.20
 2015-02-09 15:28 UTC 

[PATCH] arch: m68k: mac: misc.c: Remove some unused functions
 2015-02-03  6:11 UTC  (7+ messages)
    ` nvram and generic_nvram modules are problematic, was "

CONGRATULATION!!!
 2015-02-02 13:51 UTC 

[PATCH 1/4] defconfigs: remove CONFIG_MTD_CONCAT
 2015-01-28  1:04 UTC  (7+ messages)
` [PATCH 2/4] defconfigs: remove CONFIG_MTD_PARTITIONS
` [PATCH 4/4] defconfigs: remove CONFIG_MTD_DEBUG*
` [PATCH 0/4] defconfigs: cleanup obsolete MTD configs

[PATCH 0/6] m68k/defconfig: Update defconfigs
 2015-01-25 14:30 UTC  (7+ messages)
` [PATCH 1/6] m68k/defconfig: Refresh defconfigs for v3.16-rc1--v3.19-rc2
` [PATCH 2/6] m68k/defconfig: Enable test modules
` [PATCH 3/6] m68k/defconfig: Enable early printk support
` [PATCH 4/6] m68k/defconfig: Enable automounting of devtmpfs at /dev
` [PATCH 5/6] m68k/defconfig: Enable Atari EtherNAT and EtherNEC Ethernet support
` [PATCH 6/6] m68k/defconfig: Enable Ethernet bridging

CONFIG_DEVTMPFS_MOUNT
 2015-01-25 11:00 UTC  (8+ messages)

[PATCH 0/4] defconfigs: cleanup obsolete MTD configs
 2015-01-24 16:33 UTC 

Darlehen
 2015-01-23 14:58 UTC 

[PATCH v2 00/30] Refine PCI scan interfaces and make generic pci host bridge
 2015-01-21  0:29 UTC 

[PATCH 08/28] PCI: Introduce pci_host_assign_domain_nr() to assign domain
 2015-01-19 10:56 UTC  (27+ messages)
  ` [PATCH 10/28] PCI: Save sysdata in pci_host_bridge drvdata
  ` [PATCH 11/28] PCI: Introduce pci_host_bridge_ops to setup host bridge
  ` [PATCH 09/28] PCI: Separate pci_host_bridge creation out of pci_create_root_bus()
  ` [PATCH 27/28] PCI: Remove platform specific pci_domain_nr()
  ` [PATCH 18/28] PCI/sparc: Use pci_scan_root_bridge() for simplicity
` [PATCH 00/28] Refine PCI scan interfaces and make generic pci host bridge
  ` [PATCH 01/28] PCI: Rip out pci_bus_add_devices() from pci_scan_bus()
  ` [PATCH 23/28] PCI/designware: Use pci_scan_root_bus() for simplicity

kullervo with bigram
 2015-01-18 15:19 UTC  (5+ messages)
    ` The BigRAMPlus works - "

[PATCH] input: atari - Enable the 102nd key for German keyboards
 2015-01-17 22:12 UTC  (2+ messages)

[PATCH] net: smc91x: Remove unused definition of SMC_outw_be()
 2015-01-16  9:58 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).