mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
cxl/core/port: Fix NULL but dereferenced coccicheck error
Fix the following coccicheck warning:
./drivers/cxl/core/port.c:913:21-24: ERROR: port is NULL but dereferenced.
The put_device() is only relevent in the is_cxl_root() case.
Fixes: 2703c16c75
("cxl/core/port: Add switch port enumeration")
Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
Link: https://lore.kernel.org/r/20220307094158.404882-1-wanjiabing@vivo.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
parent
74be98774d
commit
05e815539f
@ -911,7 +911,10 @@ static void cxl_detach_ep(void *data)
|
||||
break;
|
||||
|
||||
port = find_cxl_port(dport_dev);
|
||||
if (!port || is_cxl_root(port)) {
|
||||
if (!port)
|
||||
continue;
|
||||
|
||||
if (is_cxl_root(port)) {
|
||||
put_device(&port->dev);
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user