lkml.org 
[lkml]   [2009]   [Jun]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: FW: [PATCH] cris: remove redundant tests on unsigned
Hi,

Looks good, I'll pull it into my CRIS tree.

Thanks!

/Jesper

On Mon, Jun 22, 2009 at 03:11:05PM +0200, Mikael Starvik wrote:
> -----Original Message-----
> From: Roel Kluin [mailto:roel.kluin@gmail.com]
> Sent: den 22 juni 2009 17:07
> To: Mikael Starvik
> Cc: dev-etrax; Andrew Morton
> Subject: [PATCH] cris: remove redundant tests on unsigned
>
> Since dmanr is unsigned, negatives are wrapped and caught by the other test.
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> ---
> diff --git a/arch/cris/arch-v10/kernel/dma.c b/arch/cris/arch-v10/kernel/dma.c
> index 929e686..d31504b 100644
> --- a/arch/cris/arch-v10/kernel/dma.c
> +++ b/arch/cris/arch-v10/kernel/dma.c
> @@ -24,7 +24,7 @@ int cris_request_dma(unsigned int dmanr, const char * device_id,
> unsigned long int gens;
> int fail = -EINVAL;
>
> - if ((dmanr < 0) || (dmanr >= MAX_DMA_CHANNELS)) {
> + if (dmanr >= MAX_DMA_CHANNELS) {
> printk(KERN_CRIT "cris_request_dma: invalid DMA channel %u\n", dmanr);
> return -EINVAL;
> }
> @@ -213,7 +213,7 @@ int cris_request_dma(unsigned int dmanr, const char * device_id,
> void cris_free_dma(unsigned int dmanr, const char * device_id)
> {
> unsigned long flags;
> - if ((dmanr < 0) || (dmanr >= MAX_DMA_CHANNELS)) {
> + if (dmanr >= MAX_DMA_CHANNELS) {
> printk(KERN_CRIT "cris_free_dma: invalid DMA channel %u\n", dmanr);
> return;
> }
/^JN - Jesper Nilsson
--
Jesper Nilsson -- jesper.nilsson@axis.com


\
 
 \ /
  Last update: 2009-06-23 10:03    [W:0.037 / U:0.920 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site