| To: | Atsushi Nemoto <anemo@mba.ocn.ne.jp> |
|---|---|
| Subject: | Re: [PATCH] TXx9 SPI controller driver (take 2) |
| From: | David Brownell <david-b@pacbell.net> |
| Date: | Sat, 30 Jun 2007 10:46:20 -0700 |
| Cc: | linux-mips@linux-mips.org, ralf@linux-mips.org, sshtylyov@ru.mvista.com, mlachwani@mvista.com, spi-devel-general@lists.sourceforge.net |
| Domainkey-signature: | a=rsa-sha1; q=dns; c=nofws; s=s1024; d=pacbell.net; h=Received:X-YMail-OSG:From:To:Subject:Date:User-Agent:Cc:References:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id; b=1k0HfWVsz1I06GNvocBQgJKY7ZpRjF5qe38o5BeJjBjM19TgCiOEGxJmR67/zwLVhQgW4BHzTw5s3yBwxS3QSr3Z7eOoNaKoXA7y4QwtoKYY+jpxhrwKQpMRWaqATO+vDjAySyZgLqfzjNJncE7NMcnof4YwjjUFlolwvtQHaQY= ; |
| In-reply-to: | <20070701.023414.71085498.anemo@mba.ocn.ne.jp> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <20070627.222458.27955527.anemo@mba.ocn.ne.jp> <200706300953.20156.david-b@pacbell.net> <20070701.023414.71085498.anemo@mba.ocn.ne.jp> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | KMail/1.9.6 |
On Saturday 30 June 2007, Atsushi Nemoto wrote: > On Sat, 30 Jun 2007 09:53:19 -0700, David Brownell <david-b@pacbell.net> > wrote: > > > This is a driver for SPI controller built into TXx9 MIPS SoCs. > > > This driver is derived from arch/mips/tx4938/toshiba_rbtx4938/spi_txx9.c. > > > > > > Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> > > > --- > > > Changes from previous version: > > > > Better, but still not there yet. > > Thanks! I'll be back with take 3 patch. > > > > + txx9spi_cs_func(spi, c, 0, 1000000000 / 2 / spi->max_speed_hz); > > > > You still use this confusing A/2/B syntax. Please > > rewrite that using one "/" and one "*". (And there > > is similar usage elsewhere.) > > The compiler will optimize "1000000000 / 2 / spi->max_speed_hz" into > "500000000 / spi->max_speed_hz", so it can be treat as one "/", no? Sure it's deterministic. But that doesn't prevent me from needing a double-take to figure what it does ... it's best to avoid confusing idioms in code. At the very least, put parentheses there ... |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] TXx9 SPI controller driver (take 2), Atsushi Nemoto |
|---|---|
| Previous by Thread: | Re: [PATCH] TXx9 SPI controller driver (take 2), Atsushi Nemoto |
| Next by Thread: | Generating patches and using checkpatch.pl, Daniel Laird |
| Indexes: | [Date] [Thread] [Top] [All Lists] |