Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'irq_urgent_for_v6.5_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq update from Borislav Petkov:

- Optimize IRQ domain's name assignment

* tag 'irq_urgent_for_v6.5_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqdomain: Use return value of strreplace()

+1 -3
+1 -3
kernel/irq/irqdomain.c
··· 182 182 return NULL; 183 183 } 184 184 185 - strreplace(name, '/', ':'); 186 - 187 - domain->name = name; 185 + domain->name = strreplace(name, '/', ':'); 188 186 domain->fwnode = fwnode; 189 187 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED; 190 188 }