linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Engelhardt <jengelh@computergmbh.de>
To: monstr@monstr.eu
Cc: linux-kernel@vger.kernel.org, stephen.neuendorffer@xilinx.com,
	john.williams@petalogix.com, microblaze-uclinux@itee.uq.edu.au
Subject: Re: [PATCH 12/52] [microblaze] lmb support
Date: Sun, 27 Jan 2008 13:51:12 +0100 (CET)	[thread overview]
Message-ID: <Pine.LNX.4.64.0801271347500.1185@fbirervta.pbzchgretzou.qr> (raw)
In-Reply-To: <873c2bf1f67696aa11014886470f6ba46f04e8d2.1201107832.git.monstr@monstr.eu>


On Jan 24 2008 16:02, monstr@monstr.eu wrote:
>+
>+#define DEBUG
>+
>+#ifdef DEBUG
>+#define DBG(fmt...) printk(fmt)
>+#else
>+#define DBG(fmt...)
>+#endif

Phew, don't reinvent the wheel - use the existing pr_debug() instead.


>+static unsigned long __init lmb_addrs_overlap(unsigned long base1,
>+		unsigned long size1, unsigned long base2, unsigned long size2)
>+{
>+	return ((base1 < (base2+size2)) && (base2 < (base1+size1)));
	return base1 < base2 + size2 && base2 < base1 + size1;
>+}

Operator precedence makes it possible; you could omit a lot of () in the code.
(Also try checkpatch.pl to get to know of other style 'errors')

  reply	other threads:[~2008-01-27 12:51 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-24 15:02 Microblaze init port monstr
2008-01-24 15:05 ` [PATCH 01/52] [microblaze] Kconfig patches monstr
2008-01-24 15:02   ` [PATCH 10/52] [microblaze] Generic dts file for platforms monstr
2008-01-24 15:02   ` [PATCH 11/52] [microblaze] kernel modules support monstr
2008-01-26 16:27     ` Jan Engelhardt
2008-01-24 15:02   ` [PATCH 12/52] [microblaze] lmb support monstr
2008-01-27 12:51     ` Jan Engelhardt [this message]
2008-01-24 15:02   ` [PATCH 13/52] [microblaze] PVR support, cpuinfo support monstr
2008-01-24 15:02   ` [PATCH 14/52] [microblaze] defconfig file monstr
2008-01-24 15:02   ` [PATCH 15/52] [microblaze] assembler files head.S, entry.S, monstr
2008-01-24 15:02   ` [PATCH 16/52] [microblaze] supported function for memory - kernel/lib monstr
2008-01-29 21:26     ` Jan Engelhardt
2008-01-24 15:02   ` [PATCH 17/52] [microblaze] checksum support monstr
2008-01-27 11:57     ` Geert Uytterhoeven
2008-01-27 13:41       ` Michal Simek
2008-01-27 15:12         ` Geert Uytterhoeven
2008-01-29 21:30     ` Jan Engelhardt
2008-01-24 15:02   ` [PATCH 18/52] [microblaze] early_printk support monstr
2008-01-24 15:02   ` [PATCH 19/52] [microblaze] uaccess files monstr
2008-01-24 15:02   ` [PATCH 20/52] [microblaze] heartbeat file monstr
2008-01-24 15:02   ` [PATCH 21/52] [microblaze] setup.c - system setting monstr
2008-01-24 15:02   ` [PATCH 22/52] [microblaze] asm-offsets monstr
2008-01-24 15:02   ` [PATCH 23/52] [microblaze] process and init task function monstr
2008-01-24 15:02   ` [PATCH 24/52] [microblaze] time support monstr
     [not found]     ` <47BD86F3.9030400@petalogix.com>
     [not found]       ` <20080221163040.5E9FA6A0056@mail168-sin.bigfish.com>
2008-03-02 19:25         ` [microblaze-uclinux] " Michal Simek
2008-01-24 15:03   ` [PATCH 25/52] [microblaze] ptrace support monstr
2008-01-24 15:03   ` [PATCH 26/52] [microblaze] IPC support monstr
2008-01-24 15:03   ` [PATCH 27/52] [microblaze] traps support monstr
2008-01-24 15:03   ` [PATCH 28/52] [microblaze] support for a.out monstr
2008-01-24 15:03   ` [PATCH 29/52] [microblaze] memory inicialization, MMU, TLB monstr
2008-01-24 15:03   ` [PATCH 30/52] [microblaze] consistent allocation & page.h, monstr
2008-01-24 15:03   ` [PATCH 31/52] [microblaze] pci header files monstr
2008-01-24 15:03   ` [PATCH 32/52] [microblaze] includes SHM*, msgbuf monstr
2008-01-24 15:03   ` [PATCH 33/52] [microblaze] bug headers files monstr
2008-01-24 15:03   ` [PATCH 34/52] [microblaze] definitions of types monstr
2008-01-24 15:03   ` [PATCH 35/52] [microblaze] ioctl support monstr
2008-01-24 15:03   ` [PATCH 36/52] [microblaze] io.h IO operations monstr
2008-01-24 15:03   ` [PATCH 37/52] [microblaze] headers for executables format FLAT, ELF monstr
2008-01-24 15:03   ` [PATCH 38/52] [microblaze] dma support monstr
2008-01-24 15:03   ` [PATCH 39/52] [microblaze] headers for irq monstr
2008-01-24 15:03   ` [PATCH 40/52] [microblaze] atomic.h bitops.h byteorder.h monstr
2008-01-24 15:03   ` [PATCH 41/52] [microblaze] headers pgalloc.h pgtable.h monstr
2008-01-24 15:03   ` [PATCH 42/52] [microblaze] system.h pvr.h processor.h monstr
2008-01-24 15:03   ` [PATCH 43/52] [microblaze] clinkage.h linkage.h sections.h kmap_types.h monstr
2008-01-24 15:03   ` [PATCH 44/52] [microblaze] stats headers monstr
2008-01-24 15:03   ` [PATCH 45/52] [microblaze] termbits.h termios.h monstr
2008-01-24 15:03   ` [PATCH 46/52] [microblaze] sigcontext.h siginfo.h monstr
2008-01-24 15:03   ` [PATCH 47/52] [microblaze] headers simple files monstr
2008-01-24 15:03   ` [PATCH 48/52] [microblaze] headers files entry.h current.h mman.h registers.h sembuf.h monstr
2008-01-24 15:03   ` [PATCH 49/52] [microblaze] device.h param.h topology.h monstr
2008-01-24 15:03   ` [PATCH 50/52] [microblaze] pool.h socket.h monstr
2008-01-24 15:03   ` [PATCH 51/52] [microblaze] fcntl.h sockios.h ucontext.h unistd.h monstr
2008-01-24 15:03   ` [PATCH 52/52] [microblaze] setup.h string.h thread_info.h monstr
2008-01-24 15:03   ` [PATCH 03/52] [microblaze] Cpuinfo handling monstr
2008-01-27 12:55     ` Jan Engelhardt
2008-01-24 15:03   ` [PATCH 04/52] [microblaze] Open firmware files monstr
2008-01-24 15:03   ` [PATCH 05/52] [microblaze] Support for semaphores monstr
2008-01-24 15:03   ` [PATCH 06/52] [microblaze] exception handling monstr
2008-01-24 15:03   ` [PATCH 07/52] [microblaze] Signal support monstr
2008-01-24 15:03   ` [PATCH 08/52] [microblaze] Interrupt handling, timer support, supported function monstr
2008-01-24 15:03   ` [PATCH 09/52] [microblaze] cache support monstr
2008-01-24 15:05   ` [PATCH 02/52] [microblaze] Makefiles for Microblaze cpu monstr
2008-01-26 17:36   ` [PATCH 01/52] [microblaze] Kconfig patches Randy Dunlap
2008-01-27 10:39     ` Michal Simek
2008-01-27 10:41     ` [PATCH 01/52] [microblaze] Kconfig patches v2 Michal Simek
2008-01-27 17:15       ` Randy Dunlap
2008-01-27 11:59 ` Microblaze init port Geert Uytterhoeven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.64.0801271347500.1185@fbirervta.pbzchgretzou.qr \
    --to=jengelh@computergmbh.de \
    --cc=john.williams@petalogix.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=microblaze-uclinux@itee.uq.edu.au \
    --cc=monstr@monstr.eu \
    --cc=stephen.neuendorffer@xilinx.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).