All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ARM: da850evm: Remove DM_I2C_COMPAT
@ 2018-09-30 14:20 Adam Ford
  2018-10-06 18:06 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Adam Ford @ 2018-09-30 14:20 UTC (permalink / raw)
  To: u-boot

The da850evm does not need this enabled, so this removes a
notice that appears during compile time that says
"Please remove"

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/da850_am18xxevm_defconfig b/configs/da850_am18xxevm_defconfig
index 6745cd10fa..c3d7cff18e 100644
--- a/configs/da850_am18xxevm_defconfig
+++ b/configs/da850_am18xxevm_defconfig
@@ -39,7 +39,6 @@ CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_DM=y
 CONFIG_DA8XX_GPIO=y
 CONFIG_DM_I2C=y
-CONFIG_DM_I2C_COMPAT=y
 CONFIG_SYS_I2C_DAVINCI=y
 CONFIG_MTD_DEVICE=y
 CONFIG_MTD_PARTITIONS=y
diff --git a/configs/da850evm_direct_nor_defconfig b/configs/da850evm_direct_nor_defconfig
index 8ea522af93..b7423034db 100644
--- a/configs/da850evm_direct_nor_defconfig
+++ b/configs/da850evm_direct_nor_defconfig
@@ -40,7 +40,6 @@ CONFIG_DM=y
 CONFIG_BLK=y
 CONFIG_DA8XX_GPIO=y
 CONFIG_DM_I2C=y
-CONFIG_DM_I2C_COMPAT=y
 CONFIG_SYS_I2C_DAVINCI=y
 # CONFIG_MMC is not set
 CONFIG_MTD_NOR_FLASH=y
diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h
index 319f6aadf5..167bd4b5c4 100644
--- a/include/configs/da850evm.h
+++ b/include/configs/da850evm.h
@@ -26,7 +26,6 @@
 #undef CONFIG_DM_SPI
 #undef CONFIG_DM_SPI_FLASH
 #undef CONFIG_DM_I2C
-#undef CONFIG_DM_I2C_COMPAT
 #endif
 /*
  * SoC Configuration
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] ARM: da850evm: Remove DM_I2C_COMPAT
  2018-09-30 14:20 [U-Boot] [PATCH] ARM: da850evm: Remove DM_I2C_COMPAT Adam Ford
@ 2018-10-06 18:06 ` Tom Rini
  2018-10-07 13:46   ` Adam Ford
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Rini @ 2018-10-06 18:06 UTC (permalink / raw)
  To: u-boot

On Sun, Sep 30, 2018 at 09:20:13AM -0500, Adam Ford wrote:


> The da850evm does not need this enabled, so this removes a
> notice that appears during compile time that says
> "Please remove"
> 
> Signed-off-by: Adam Ford <aford173@gmail.com>

NAK, this breaks da850_am18xxevm which, ahem, you're listed as the
maintainer of :)

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20181006/7f24714e/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] ARM: da850evm: Remove DM_I2C_COMPAT
  2018-10-06 18:06 ` [U-Boot] " Tom Rini
@ 2018-10-07 13:46   ` Adam Ford
  2018-10-07 14:59     ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Adam Ford @ 2018-10-07 13:46 UTC (permalink / raw)
  To: u-boot

On Sat, Oct 6, 2018 at 1:06 PM Tom Rini <trini@konsulko.com> wrote:
>
> On Sun, Sep 30, 2018 at 09:20:13AM -0500, Adam Ford wrote:
>
>
> > The da850evm does not need this enabled, so this removes a
> > notice that appears during compile time that says
> > "Please remove"
> >
> > Signed-off-by: Adam Ford <aford173@gmail.com>
>
> NAK, this breaks da850_am18xxevm which, ahem, you're listed as the
> maintainer of :)
>
(facepalm)  I don't know what I was thinking.  I must have had
something else going which made it compile.

On a separate note, I'd like to relinquish maintainership of just
da850_am18xxevm since I don't have that hardware, and it was not made
by Logic PD.  The other remaining boards I have, so I can continue to
do that.  Looking at the maintainer readme stuff, I cannot tell of the
proper syntax to orphan just one defconfig since they appear to me
sharing a lot of the same code.

Can you off me a suggestion?  I could just delete it from the list of
boards I maintain, but it seems like, it should be moved into it's own
category, but I don't want to imply the rest have been orphaned.

adam
> --
> Tom

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] ARM: da850evm: Remove DM_I2C_COMPAT
  2018-10-07 13:46   ` Adam Ford
@ 2018-10-07 14:59     ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-10-07 14:59 UTC (permalink / raw)
  To: u-boot

On Sun, Oct 07, 2018 at 08:46:13AM -0500, Adam Ford wrote:
> On Sat, Oct 6, 2018 at 1:06 PM Tom Rini <trini@konsulko.com> wrote:
> >
> > On Sun, Sep 30, 2018 at 09:20:13AM -0500, Adam Ford wrote:
> >
> >
> > > The da850evm does not need this enabled, so this removes a
> > > notice that appears during compile time that says
> > > "Please remove"
> > >
> > > Signed-off-by: Adam Ford <aford173@gmail.com>
> >
> > NAK, this breaks da850_am18xxevm which, ahem, you're listed as the
> > maintainer of :)
> >
> (facepalm)  I don't know what I was thinking.  I must have had
> something else going which made it compile.
> 
> On a separate note, I'd like to relinquish maintainership of just
> da850_am18xxevm since I don't have that hardware, and it was not made
> by Logic PD.  The other remaining boards I have, so I can continue to
> do that.  Looking at the maintainer readme stuff, I cannot tell of the
> proper syntax to orphan just one defconfig since they appear to me
> sharing a lot of the same code.
> 
> Can you off me a suggestion?  I could just delete it from the list of
> boards I maintain, but it seems like, it should be moved into it's own
> category, but I don't want to imply the rest have been orphaned.

I think you'll need to re-org the file to have a new entry just for that
board and mark it as orphaned.  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20181007/7625a3ee/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-10-07 14:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-30 14:20 [U-Boot] [PATCH] ARM: da850evm: Remove DM_I2C_COMPAT Adam Ford
2018-10-06 18:06 ` [U-Boot] " Tom Rini
2018-10-07 13:46   ` Adam Ford
2018-10-07 14:59     ` Tom Rini

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.