mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
spi: rspi: Use devm_kasprintf()
Use the devm_kasprintf() helper function instead of open coding error-prone buffer handling and string formatting. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
d64b472678
commit
43937455c9
@ -1046,12 +1046,11 @@ static int rspi_request_irq(struct device *dev, unsigned int irq,
|
||||
irq_handler_t handler, const char *suffix,
|
||||
void *dev_id)
|
||||
{
|
||||
const char *base = dev_name(dev);
|
||||
size_t len = strlen(base) + strlen(suffix) + 2;
|
||||
char *name = devm_kzalloc(dev, len, GFP_KERNEL);
|
||||
const char *name = devm_kasprintf(dev, GFP_KERNEL, "%s:%s",
|
||||
dev_name(dev), suffix);
|
||||
if (!name)
|
||||
return -ENOMEM;
|
||||
snprintf(name, len, "%s:%s", base, suffix);
|
||||
|
||||
return devm_request_irq(dev, irq, handler, 0, name, dev_id);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user