On Wed, Dec 05, 2018 at 10:12:24AM +0000, Bryan O'Donoghue wrote: > On 04/12/2018 20:58, Cristian Sicilia wrote: > >Some concatenated strings are now spaced. > > > >Signed-off-by: Cristian Sicilia <sicilia.cristian@xxxxxxxxx> > >--- > > drivers/staging/greybus/loopback.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > >diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c > >index 1085e06..acfa392 100644 > >--- a/drivers/staging/greybus/loopback.c > >+++ b/drivers/staging/greybus/loopback.c > >@@ -141,7 +141,7 @@ static ssize_t name##_##field##_show(struct device *dev, \ > > /* Report 0 for min and max if no transfer successed */ \ > > if (!gb->requests_completed) \ > > return sprintf(buf, "0\n"); \ > >- return sprintf(buf, "%"#type"\n", gb->name.field); \ > >+ return sprintf(buf, "%" #type "\n", gb->name.field); \ > > } \ > > static DEVICE_ATTR_RO(name##_##field) > >@@ -176,7 +176,7 @@ static ssize_t field##_show(struct device *dev, \ > > char *buf) \ > > { \ > > struct gb_loopback *gb = dev_get_drvdata(dev); \ > >- return sprintf(buf, "%"#type"\n", gb->field); \ > >+ return sprintf(buf, "%" #type "\n", gb->field); \ > > } \ > > static ssize_t field##_store(struct device *dev, \ > > struct device_attribute *attr, \ > >@@ -212,7 +212,7 @@ static ssize_t field##_show(struct device *dev, \ > > char *buf) \ > > { \ > > struct gb_loopback *gb = dev_get_drvdata(dev); \ > >- return sprintf(buf, "%"#type"\n", gb->field); \ > >+ return sprintf(buf, "%" #type "\n", gb->field); \ > > } \ > > static ssize_t field##_store(struct device *dev, \ > > struct device_attribute *attr, \ > > > Eh. > > But doesn't all of this add an extra two space to the resultant string ? > > Not what we want. It doesn't change the result string, if I well understand the question your doubt is if there are some space between % and type or between type and end of line: This (supposing type=u and field=min): return sprintf(buf, "%"#type"\n", gb->field); Will expanded in this return sprintf(buf, "%""u""\n", gb->min); That's is like: return sprintf(buf, "%u\n", gb->min); This (supposing type=u and field=min): return sprintf(buf, "%" #type "\n", gb->field); Will expanded in this return sprintf(buf, "%" "u" "\n", gb->min); That's is like: return sprintf(buf, "%u\n", gb->min); > > --- > bod
Attachment:
signature.asc
Description: PGP signature
_______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel