Tag: 05a34f51ba451c65773ad6f1acf4cc089cc474d8

PCI hotplug: fix logic in Compaq hotplug controller bus speed setup

Author: Julia Lawall <julia@diku.dk> The pattern !E && !E->fld is nonsensical. The patch below updates this according to the assumption that && should be ||. But perhaps another solution was intended. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @disable and_comm@ expression E; identifier fld; @@ – !E && !E->fld + …

Continue reading