From: Igor Grinberg <grinberg@compulab.co.il>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 26/29] dm: tegra: spi: Convert to driver model
Date: Tue, 30 Sep 2014 01:59:38 +0300 [thread overview]
Message-ID: <5429E45A.2030807@compulab.co.il> (raw)
In-Reply-To: <1412019326-6721-27-git-send-email-sjg@chromium.org>
Hi Simon,
On 09/29/14 22:35, Simon Glass wrote:
> diff --git a/board/compulab/common/eeprom.c b/board/compulab/common/eeprom.c
> index 85442cd..ba3a5bf 100644
> --- a/board/compulab/common/eeprom.c
> +++ b/board/compulab/common/eeprom.c
> @@ -33,7 +33,7 @@ static int cl_eeprom_read(uint offset, uchar *buf, int len)
> {
> int res;
> unsigned int current_i2c_bus = i2c_get_bus_num();
> -
> +#define CONFIG_SYS_I2C_EEPROM_BUS 1
> res = i2c_set_bus_num(CONFIG_SYS_I2C_EEPROM_BUS);
> if (res < 0)
> return res;
The above hunk is not related to this patch. Please, remove.
A temporary fix for trimslice if needed can be found here [1].
Albert, patchwork says it is delegated to you.
Are you going to apply it some time soon?
[1] https://patchwork.ozlabs.org/patch/390381/
--
Regards,
Igor.
next prev parent reply other threads:[~2014-09-29 22:59 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-29 19:34 [U-Boot] [PATCH v3 0/29] Introduce driver model support for SPI, SPI flash, cros_ec Simon Glass
2014-09-29 19:34 ` [U-Boot] [PATCH v3 01/29] sandbox: dts: Add a SPI device and cros_ec device Simon Glass
2014-09-29 19:34 ` [U-Boot] [PATCH v3 02/29] dm: core: Add functions for iterating through device children Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 03/29] dm: core: Allow parents to pass data to children during probe Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 04/29] dm: core: Add a clarifying comment on struct udevice's seq member Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 05/29] dm: spi: Add a uclass for SPI Simon Glass
2014-10-10 17:31 ` Jagan Teki
2014-10-10 18:05 ` Simon Glass
2014-10-10 18:37 ` Jagan Teki
2014-10-10 23:26 ` Simon Glass
2014-10-11 17:33 ` Jagan Teki
2014-10-11 17:43 ` Simon Glass
2014-10-11 18:06 ` Jagan Teki
2014-10-11 18:55 ` Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 06/29] dm: sandbox: Add a SPI emulation uclass Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 07/29] dm: Remove spi_init() from board_r.c when using driver model Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 08/29] dm: Add spi.h header to a few files Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 09/29] dm: spi: Adjust cmd_spi to work with driver model Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 10/29] dm: sandbox: spi: Move to " Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 11/29] dm: spi: Rename soft_spi.c to soft_spi_legacy.c Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 12/29] dm: spi: Remove SPI_INIT feature Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 13/29] dm: spi: Add soft_spi implementation Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 14/29] dm: exynos: Convert SPI to driver model Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 15/29] dm: spi: Add documentation on how to convert over SPI drivers Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 16/29] exynos: universal_c210: Move to driver model soft_spi Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 17/29] sf: Tidy up public and private header files Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 18/29] spi: Use error return value in sf_ops Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 19/29] dm: sf: Add a uclass for SPI flash Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 20/29] dm: Convert spi_flash_probe() and 'sf probe' to use driver model Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 21/29] dm: sf: sandbox: Convert SPI flash driver to " Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 22/29] dm: exynos: config: Use driver model for SPI flash Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 23/29] dm: spi: Add tests Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 24/29] dm: sf: Add tests for SPI flash Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 25/29] dm: tegra: dts: Add aliases for spi on tegra30 boards Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 26/29] dm: tegra: spi: Convert to driver model Simon Glass
2014-09-29 22:59 ` Igor Grinberg [this message]
2014-10-01 2:23 ` Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 27/29] dm: cros_ec: Add support for " Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 28/29] dm: sandbox: cros_ec: Move sandbox cros_ec to driver module Simon Glass
2014-09-29 19:35 ` [U-Boot] [PATCH v3 29/29] dm: exynos: cros_ec: Move cros_ec_spi to driver model Simon Glass
2014-10-08 20:33 ` [U-Boot] [PATCH v3 0/29] Introduce driver model support for SPI, SPI flash, cros_ec Simon Glass
2014-10-09 10:33 ` Jagan Teki
2014-10-10 2:06 ` Simon Glass
2014-10-10 13:30 ` Jagan Teki
2014-10-10 13:35 ` Simon Glass
2014-10-10 13:51 ` Jagan Teki
2014-10-10 13:56 ` Simon Glass
2014-10-11 18:46 ` Jagan Teki
2014-10-23 4:06 ` Simon Glass
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=5429E45A.2030807@compulab.co.il \
--to=grinberg@compulab.co.il \
--cc=u-boot@lists.denx.de \
/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