Remove unnecessary type cast
diff --git a/plugins/hciops.c b/plugins/hciops.c
index ad83eb2..20b18c8 100644
--- a/plugins/hciops.c
+++ b/plugins/hciops.c
@@ -2099,7 +2099,7 @@
 	bacpy(&cp.bdaddr, BDADDR_ANY);
 	cp.read_all = 1;
 	hci_send_cmd(dev->sk, OGF_HOST_CTL, OCF_READ_STORED_LINK_KEY,
-			READ_STORED_LINK_KEY_CP_SIZE, (void *) &cp);
+					READ_STORED_LINK_KEY_CP_SIZE, &cp);
 
 	if (!dev->pending)
 		init_adapter(index);