From: "Frank Schäfer" <fschaefer.oss@googlemail.com>
To: Alban Browaeys <alban.browaeys@gmail.com>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>,
linux-media@vger.kernel.org, Alban Browaeys <prahal@yahoo.com>
Subject: Re: [PATCH 3/4] [media] em28xx: usb power config is in the low byte.
Date: Thu, 18 Jul 2013 17:27:20 +0200 [thread overview]
Message-ID: <51E80958.2000701@googlemail.com> (raw)
In-Reply-To: <1374015983-27615-1-git-send-email-prahal@yahoo.com>
Am 17.07.2013 01:06, schrieb Alban Browaeys:
> According to the em2860 datasheet, eeprom byte 08H is Chip
> Configuration Low Byte and 09H is High Byte.
> Usb power configuration is in the Low byte (same as the usb audio
> class config).
>
> Signed-off-by: Alban Browaeys <prahal@yahoo.com>
> ---
> drivers/media/usb/em28xx/em28xx-i2c.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/usb/em28xx/em28xx-i2c.c b/drivers/media/usb/em28xx/em28xx-i2c.c
> index c4ff973..6ff7415 100644
> --- a/drivers/media/usb/em28xx/em28xx-i2c.c
> +++ b/drivers/media/usb/em28xx/em28xx-i2c.c
> @@ -743,13 +743,13 @@ static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned bus,
> break;
> }
>
> - if (le16_to_cpu(dev_config->chip_conf) & 1 << 3)
> + if (le16_to_cpu(dev_config->chip_conf) >> 4 & 1 << 3)
> em28xx_info("\tUSB Remote wakeup capable\n");
>
> - if (le16_to_cpu(dev_config->chip_conf) & 1 << 2)
> + if (le16_to_cpu(dev_config->chip_conf) >> 4 & 1 << 2)
> em28xx_info("\tUSB Self power capable\n");
>
> - switch (le16_to_cpu(dev_config->chip_conf) & 0x3) {
> + switch (le16_to_cpu(dev_config->chip_conf) >> 4 & 0x3) {
> case 0:
> em28xx_info("\t500mA max power\n");
> break;
NACK.
According to my datasheet excerpt (EM2860 Hardware Specification
8/18/2004), bits 0:3 are used for USB configuration and bits 4:7 for
audio configuration.
So the current code is correct.
Regards,
Frank
next prev parent reply other threads:[~2013-07-18 15:25 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-16 23:06 [PATCH 3/4] [media] em28xx: usb power config is in the low byte Alban Browaeys
2013-07-18 15:27 ` Frank Schäfer [this message]
[not found] ` <CAMhY2AXOk+poaxcqTiDvGCWcUEQFTT025=h3WdhrOB3bQKPEoQ@mail.gmail.com>
[not found] ` <CAMhY2AUZAFPykoxt+fw7XzzNPftcOOAXws4mwMOJrq7hzpdvUw@mail.gmail.com>
2013-07-24 15:33 ` Frank Schäfer
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=51E80958.2000701@googlemail.com \
--to=fschaefer.oss@googlemail.com \
--cc=alban.browaeys@gmail.com \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@redhat.com \
--cc=prahal@yahoo.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.