commit | 5f76c6f313bffbf372c0722582e7bd509f0d3510 | [log] [tgz] |
---|---|---|
author | Gustavo A. R. Silva <garsilva@embeddedor.com> | Wed Nov 15 16:33:10 2017 -0600 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Nov 28 16:31:27 2017 +0100 |
tree | e5875a108f5d862301b317ccde0ec0ced6b7a0ad | |
parent | 845089bbf589be75143d0c9fb326d5595c1b5787 [diff] |
fpga: fpga-mgr: remove unnecessary code in __fpga_mgr_get Notice that mgr = to_fpga_manager(dev); expands to: mgr = container_of(dev, struct fpga_manager, dev); and container_of is never null, so this null check is unnecessary. Addresses-Coverity-ID: 1397916 Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Alan Tull <atull@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>