int  nvkm_client_new(const char *name, u64 device, const char *cfg, const char *dbg,
                     int (*)(u64, void *, u32), struct nvkm_client **);
-struct nvkm_client *nvkm_client_search(struct nvkm_client *, u64 handle);
 
 /* logging for client-facing objects */
 #define nvif_printk(o,l,p,f,a...) do {                                         \
 
        .ctor = nvkm_uclient_new,
 };
 
-static const struct nvkm_object_func nvkm_client;
-struct nvkm_client *
-nvkm_client_search(struct nvkm_client *client, u64 handle)
-{
-       struct nvkm_object *object;
-
-       object = nvkm_object_search(client, handle, &nvkm_client);
-       if (IS_ERR(object))
-               return (void *)object;
-
-       return nvkm_client(object);
-}
-
 static int
 nvkm_client_mthd_devlist(struct nvkm_client *client, void *data, u32 size)
 {