Re: [PATCH 1/3] board: ti: common: Optimize boot when detecting consecutive bad records

2022-07-06 Thread Tom Rini
On Fri, Jun 17, 2022 at 01:26:10PM -0500, Nishanth Menon wrote: > The eeprom data area is much bigger than the data we intend to store, > however, with bad programming, we might end up reading bad records over > and over till we run out of eeprom space. instead just exit when 10 > consecutive

Re: [PATCH 1/3] board: ti: common: Optimize boot when detecting consecutive bad records

2022-06-17 Thread Tom Rini
On Fri, Jun 17, 2022 at 02:19:57PM -0500, Nishanth Menon wrote: > On 14:50-20220617, Tom Rini wrote: > > On Fri, Jun 17, 2022 at 01:26:10PM -0500, Nishanth Menon wrote: > > > > > The eeprom data area is much bigger than the data we intend to store, > > > however, with bad programming, we might

Re: [PATCH 1/3] board: ti: common: Optimize boot when detecting consecutive bad records

2022-06-17 Thread Nishanth Menon
On 14:50-20220617, Tom Rini wrote: > On Fri, Jun 17, 2022 at 01:26:10PM -0500, Nishanth Menon wrote: > > > The eeprom data area is much bigger than the data we intend to store, > > however, with bad programming, we might end up reading bad records over > > and over till we run out of eeprom

Re: [PATCH 1/3] board: ti: common: Optimize boot when detecting consecutive bad records

2022-06-17 Thread Tom Rini
On Fri, Jun 17, 2022 at 01:26:10PM -0500, Nishanth Menon wrote: > The eeprom data area is much bigger than the data we intend to store, > however, with bad programming, we might end up reading bad records over > and over till we run out of eeprom space. instead just exit when 10 > consecutive

[PATCH 1/3] board: ti: common: Optimize boot when detecting consecutive bad records

2022-06-17 Thread Nishanth Menon
The eeprom data area is much bigger than the data we intend to store, however, with bad programming, we might end up reading bad records over and over till we run out of eeprom space. instead just exit when 10 consecutive records are read. Signed-off-by: Nishanth Menon ---