From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: John Linn <john.linn@xilinx.com>
Cc: linuxppc-dev@ozlabs.org, Sadanand <sadanan@xilinx.com>,
linux-input@vger.kernel.org
Subject: Re: [PATCH] [V2] powerpc: Xilinx: PS2: Added new XPS PS2 driver
Date: Mon, 30 Jun 2008 14:21:12 -0400 [thread overview]
Message-ID: <20080630141552.ZZRA012@mailhub.coreip.homeip.net> (raw)
In-Reply-To: <20080630153824.ED3D319B0075@mail96-wa4.bigfish.com>
On Mon, Jun 30, 2008 at 08:38:21AM -0700, John Linn wrote:
> + spin_lock_init(&drvdata->lock);
> + dev_set_drvdata(dev, (void *)drvdata);
No need to cast to void *.
> +
> + if (!regs_res || !irq_res) {
> + dev_err(dev, "IO resource(s) not found\n");
> + retval = -EFAULT;
> + goto failed1;
> + }
> +
> + drvdata->irq = irq_res->start;
> + remap_size = regs_res->end - regs_res->start + 1;
> + if (!request_mem_region(regs_res->start, remap_size, DRIVER_NAME)) {
> +
> + dev_err(dev, "Couldn't lock memory region at 0x%08X\n",
> + (unsigned int)regs_res->start);
> + retval = -EBUSY;
> + goto failed1;
> + }
> +
> + /* Fill in configuration data and add them to the list */
> + drvdata->phys_addr = regs_res->start;
> + drvdata->remap_size = remap_size;
> + drvdata->base_address = ioremap(regs_res->start, remap_size);
> + if (drvdata->base_address == NULL) {
> +
> + dev_err(dev, "Couldn't ioremap memory at 0x%08X\n",
> + (unsigned int)regs_res->start);
> + retval = -EFAULT;
> + goto failed2;
> + }
> +
> + /* Initialize the PS/2 interface */
> + down(&cfg_sem);
> + if (xps2_initialize(drvdata)) {
> + up(&cfg_sem);
> + dev_err(dev, "Could not initialize device\n");
> + retval = -ENODEV;
> + goto failed3;
> + }
> + up(&cfg_sem);
Do you need a counting semaphore here?
> +
> + dev_info(dev, "Xilinx PS2 at 0x%08X mapped to 0x%08X, irq=%d\n",
> + drvdata->phys_addr, (u32)drvdata->base_address, drvdata->irq);
> +
> + drvdata->serio.id.type = SERIO_8042;
> + drvdata->serio.write = sxps2_write;
> + drvdata->serio.open = sxps2_open;
> + drvdata->serio.close = sxps2_close;
> + drvdata->serio.port_data = drvdata;
> + drvdata->serio.dev.parent = dev;
> + snprintf(drvdata->serio.name, sizeof(drvdata->serio.name),
> + XPS2_NAME_DESC, id);
> + snprintf(drvdata->serio.phys, sizeof(drvdata->serio.phys),
> + XPS2_PHYS_DESC, id);
I bet if you make a temp variable for drvdata->serio the code size wil
shrink a tiny bit.
--
Dmitry
next prev parent reply other threads:[~2008-06-30 18:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-30 15:38 [PATCH] [V2] powerpc: Xilinx: PS2: Added new XPS PS2 driver John Linn
2008-06-30 17:55 ` Peter Korsgaard
2008-06-30 17:59 ` John Linn
2008-06-30 18:21 ` Dmitry Torokhov [this message]
2008-06-30 21:28 ` John Linn
-- strict thread matches above, loose matches on Subject: below --
2008-07-03 16:42 John Linn
2008-07-03 17:27 ` Dmitry Torokhov
2008-07-03 17:42 ` Grant Likely
2008-07-03 17:59 ` John Linn
2008-07-03 17:37 ` Grant Likely
2008-07-03 19:31 ` John Linn
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=20080630141552.ZZRA012@mailhub.coreip.homeip.net \
--to=dmitry.torokhov@gmail.com \
--cc=john.linn@xilinx.com \
--cc=linux-input@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=sadanan@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).