misc: tps6594-pfsm: Add null check in the tps6594_pfsm_probe When devm_kasprintf fails, it returns a null pointer. However, this return value is not properly checked in the function tps6594_pfsm_probe. A check should be added after the devm_kasprintf call to prevent potential null pointer dereference issues. CODE: pfsm->miscdev.minor = MISC_DYNAMIC_MINOR; pfsm->miscdev.name = devm_kasprintf(dev, GFP_KERNEL, "pfsm-%ld-0x%02x", tps->chip_id, tps->reg); pfsm->miscdev.fops = &tps6594_pfsm_fops; pfsm->miscdev.parent = dev->parent;