aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/gasket/gasket_page_table.c
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2018-07-31 13:24:47 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-01 20:07:03 +0200
commitd29f6c19b0d4f71ee72e4e2b387c3d08666a6a18 (patch)
tree1426ff407ddb9665b0d2b752aa7ccc9f653004e1 /drivers/staging/gasket/gasket_page_table.c
parentstaging: gasket: core: use bool type for ns_capable result (diff)
downloadlinux-dev-d29f6c19b0d4f71ee72e4e2b387c3d08666a6a18.tar.xz
linux-dev-d29f6c19b0d4f71ee72e4e2b387c3d08666a6a18.zip
Revert "staging: gasket: page table: hold references to device and pci_dev"
gasket_free_dev() is called only from driver PCI probe and remove function. It is guaranteed that that pci_dev structure is not going anywhere during that time; there is no need to take this additional reference. This reverts commit dd9d1502feea3c23d412f289aad79e1d4e86d45d. Reported-by: Dmitry Torokhov <dtor@chromium.org> Signed-off-by: Todd Poynor <toddpoynor@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gasket/gasket_page_table.c')
-rw-r--r--drivers/staging/gasket/gasket_page_table.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/gasket/gasket_page_table.c b/drivers/staging/gasket/gasket_page_table.c
index 13e1d0952a47..ed6ab3c5f038 100644
--- a/drivers/staging/gasket/gasket_page_table.c
+++ b/drivers/staging/gasket/gasket_page_table.c
@@ -280,7 +280,7 @@ int gasket_page_table_init(struct gasket_page_table **ppg_tbl,
pg_tbl->extended_offset_reg =
(u64 __iomem *)&bar_data->virt_base[page_table_config->extended_reg];
pg_tbl->device = get_device(device);
- pg_tbl->pci_dev = pci_dev_get(pci_dev);
+ pg_tbl->pci_dev = pci_dev;
dev_dbg(device, "Page table initialized successfully\n");
@@ -378,7 +378,6 @@ void gasket_page_table_cleanup(struct gasket_page_table *pg_tbl)
pg_tbl->entries = NULL;
put_device(pg_tbl->device);
- pci_dev_put(pg_tbl->pci_dev);
kfree(pg_tbl);
}