Re: [Linux-c6x-dev] [PATCH 05/20] c6x: use generic dma_noncoherent_ops

2018-05-14 Thread Mark Salter
e.o devicetree.o > obj-y += switch_to.o entry.o vectors.o c6x_ksyms.o > -obj-y += soc.o dma.o > +obj-y += soc.o > > obj-$(CONFIG_MODULES) += module.o > diff --git a/arch/c6x/kernel/dma.c b/arch/c6x/kernel/dma.c > deleted file mode 100644 > index 31e1a9ec3a9c..

Re: [PATCH] iommu/core: fix bus notifier breakage

2014-09-25 Thread Mark Salter
On Thu, 2014-09-25 at 16:47 +0200, Joerg Roedel wrote: On Sun, Sep 21, 2014 at 01:58:24PM -0400, Mark Salter wrote: iommu_bus_init() registers a bus notifier on the given bus by using a statically defined notifier block: static struct notifier_block iommu_bus_nb

[PATCH] iommu/core: fix bus notifier breakage

2014-09-22 Thread Mark Salter
the notifier_block at runtime. Some error checking is also added to catch any allocation failure or notifier registration error. Signed-off-by: Mark Salter msal...@redhat.com --- drivers/iommu/iommu.c | 26 -- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git