Re: [PATCH v2 26/28] serial: dm: Add support for puts

2022-03-12 Thread Simon Glass
Hi Sean, On Fri, 11 Mar 2022 at 22:53, Sean Anderson wrote: > > On 3/12/22 12:02 AM, Simon Glass wrote: > > Hi Sean, > > > > On Thu, 10 Mar 2022 at 13:51, Sean Anderson wrote: > >> > >> Some serial drivers can be vastly more efficient when printing multiple > >> characters at once. Non-DM serial

Re: [PATCH v2 26/28] serial: dm: Add support for puts

2022-03-11 Thread Sean Anderson
On 3/12/22 12:02 AM, Simon Glass wrote: Hi Sean, On Thu, 10 Mar 2022 at 13:51, Sean Anderson wrote: Some serial drivers can be vastly more efficient when printing multiple characters at once. Non-DM serial has had a puts option for these sorts of drivers; implement it for DM serial as well.

Re: [PATCH v2 26/28] serial: dm: Add support for puts

2022-03-11 Thread Simon Glass
Hi Sean, On Thu, 10 Mar 2022 at 13:51, Sean Anderson wrote: > > Some serial drivers can be vastly more efficient when printing multiple > characters at once. Non-DM serial has had a puts option for these sorts > of drivers; implement it for DM serial as well. > > Because we have to add carriage r

Re: [PATCH v2 26/28] serial: dm: Add support for puts

2022-03-11 Thread Sean Anderson
On 3/10/22 3:50 PM, Sean Anderson wrote: > Some serial drivers can be vastly more efficient when printing multiple > characters at once. Non-DM serial has had a puts option for these sorts > of drivers; implement it for DM serial as well. > > Because we have to add carriage returns, we can't ju

[PATCH v2 26/28] serial: dm: Add support for puts

2022-03-10 Thread Sean Anderson
Some serial drivers can be vastly more efficient when printing multiple characters at once. Non-DM serial has had a puts option for these sorts of drivers; implement it for DM serial as well. Because we have to add carriage returns, we can't just pass the whole string directly to the serial driver