* [PATCH] MIPS: Fix OCTEON BUG() warnings a different way.
@ 2013-06-19 22:04 David Daney
2013-06-20 14:26 ` Ralf Baechle
0 siblings, 1 reply; 2+ messages in thread
From: David Daney @ 2013-06-19 22:04 UTC (permalink / raw)
To: linux-mips, ralf; +Cc: David Daney
From: David Daney <david.daney@cavium.com>
Signed-off-by: David Daney <david.daney@cavium.com>
---
arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h b/arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h
index 840399b..3531963 100644
--- a/arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h
+++ b/arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h
@@ -24,21 +24,21 @@ static inline dma_addr_t plat_map_dma_mem(struct device *dev, void *addr,
size_t size)
{
BUG();
- unreachable();
+ return 0;
}
static inline dma_addr_t plat_map_dma_mem_page(struct device *dev,
struct page *page)
{
BUG();
- unreachable();
+ return 0;
}
static inline unsigned long plat_dma_addr_to_phys(struct device *dev,
dma_addr_t dma_addr)
{
BUG();
- unreachable();
+ return 0;
}
static inline void plat_unmap_dma_mem(struct device *dev, dma_addr_t dma_addr,
@@ -50,7 +50,7 @@ static inline void plat_unmap_dma_mem(struct device *dev, dma_addr_t dma_addr,
static inline int plat_dma_supported(struct device *dev, u64 mask)
{
BUG();
- unreachable();
+ return 0;
}
static inline void plat_extra_sync_for_device(struct device *dev)
@@ -67,7 +67,7 @@ static inline int plat_dma_mapping_error(struct device *dev,
dma_addr_t dma_addr)
{
BUG();
- unreachable();
+ return 0;
}
dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr);
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] MIPS: Fix OCTEON BUG() warnings a different way.
2013-06-19 22:04 [PATCH] MIPS: Fix OCTEON BUG() warnings a different way David Daney
@ 2013-06-20 14:26 ` Ralf Baechle
0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2013-06-20 14:26 UTC (permalink / raw)
To: David Daney; +Cc: linux-mips, David Daney, linux-kernel
On Wed, Jun 19, 2013 at 03:04:28PM -0700, David Daney wrote:
> Signed-off-by: David Daney <david.daney@cavium.com>
I replaced my fix with your fix but left he direct inclusion of
<linux/bug.h>.
Let as homework for a later point: make BUG() invoke unreachable() if
CONFIG_BUG is diabled, something like that. This will improve code
generation for GCC 4.5+ but for older compilers unreachable() is
defined as do { } while (1) so will emit extra code.
Thanks,
Ralf
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-20 14:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-19 22:04 [PATCH] MIPS: Fix OCTEON BUG() warnings a different way David Daney
2013-06-20 14:26 ` Ralf Baechle
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.