return bus;
 }
 
-static void nommu_unmap_single(struct device *dev, dma_addr_t addr,size_t size,
-                       int direction)
-{
-}
 
 /* Map a set of buffers described by scatterlist in streaming
  * mode for DMA.  This is the scatter-gather version of the
        return nents;
 }
 
-/* Unmap a set of streaming mode DMA translations.
- * Again, cpu read rules concerning calls here are the same as for
- * pci_unmap_single() above.
- */
-static void nommu_unmap_sg(struct device *dev, struct scatterlist *sg,
-                 int nents, int dir)
-{
-}
-
 const struct dma_mapping_ops nommu_dma_ops = {
        .map_single = nommu_map_single,
-       .unmap_single = nommu_unmap_single,
        .map_sg = nommu_map_sg,
-       .unmap_sg = nommu_unmap_sg,
        .is_phys = 1,
 };