From: Sam Ravnborg <sam@ravnborg.org>
To: David Miller <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org, jgarzik@pobox.com,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2]: sparc64: Add Niagara2 RNG driver.
Date: Sat, 17 May 2008 08:54:37 +0200 [thread overview]
Message-ID: <20080517065437.GA8092@uranus.ravnborg.org> (raw)
In-Reply-To: <20080516.165354.213801515.davem@davemloft.net>
Hi David.
Small nitpick..
> diff --git a/drivers/char/hw_random/Makefile b/drivers/char/hw_random/Makefile
> index c8b7300..32b327b 100644
> --- a/drivers/char/hw_random/Makefile
> +++ b/drivers/char/hw_random/Makefile
> @@ -7,6 +7,8 @@ rng-core-y := core.o
> obj-$(CONFIG_HW_RANDOM_INTEL) += intel-rng.o
> obj-$(CONFIG_HW_RANDOM_AMD) += amd-rng.o
> obj-$(CONFIG_HW_RANDOM_GEODE) += geode-rng.o
> +obj-$(CONFIG_HW_RANDOM_N2RNG) += n2-rng.o
> +n2-rng-objs := n2-drv.o n2-asm.o
These days the preferred syntax is:
n2-rng-y := n2-drv.o n2-asm.o
Following this scheme in general allows us to easily
introduce:
n2-rng-$(CONFIG_FOO) += foo.o
I do not assume your n2-rng will need this,
but doing so in general is a win.
> obj-$(CONFIG_HW_RANDOM_VIA) += via-rng.o
> obj-$(CONFIG_HW_RANDOM_IXP4XX) += ixp4xx-rng.o
> obj-$(CONFIG_HW_RANDOM_OMAP) += omap-rng.o
> diff --git a/drivers/char/hw_random/n2-asm.S b/drivers/char/hw_random/n2-asm.S
> new file mode 100644
> index 0000000..c504e53
> --- /dev/null
> +++ b/drivers/char/hw_random/n2-asm.S
> @@ -0,0 +1,93 @@
> +/* n2-asm.S: Niagara2 RNG hypervisor call assembler.
> + *
> + * Copyright (C) 2008 David S. Miller <davem@davemloft.net>
> + */
> +#include <asm/hypervisor.h>
> +#include "n2rng.h"
> +
> + .text
I had expected:
.section .text, "aw"
here??
(Maybe init.h should define a __TEXT macro)..
> + .globl sun4v_rng_get_diag_ctl
> + .type sun4v_rng_get_diag_ctl,#function
> +sun4v_rng_get_diag_ctl:
> + mov HV_FAST_RNG_GET_DIAG_CTL, %o5
> + ta HV_FAST_TRAP
> + retl
> + nop
> + .size sun4v_rng_get_diag_ctl,.-sun4v_rng_get_diag_ctl
Any specific reason why you do not use:
ENTRY(sun4v_rng_get_diag_ctl)
mov HV_FAST_RNG_GET_DIAG_CTL, %o5
ta HV_FAST_TRAP
retl
nop
ENDPROC(sun4v_rng_get_diag_ctl)
I see these uses in other places and it
do the .globl, .type, .size and the label: stuff for you.
This is a general comment for all the 'functions' in this file.
Only browsed the rest - looked good.
Sam
next prev parent reply other threads:[~2008-05-17 6:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-16 23:53 David Miller
2008-05-17 6:54 ` Sam Ravnborg [this message]
2008-06-03 22:52 ` David Miller
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=20080517065437.GA8092@uranus.ravnborg.org \
--to=sam@ravnborg.org \
--cc=davem@davemloft.net \
--cc=jgarzik@pobox.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sparclinux@vger.kernel.org \
/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
all inboxes | Powered by JetHome®