From 8e67a73556a25a96343a681ab83fb4fd7f73bdeb Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Wed, 3 Dec 2014 18:47:09 +1000 Subject: i2c: fix some blatant abuse Signed-off-by: Ben Skeggs --- nvkm/subdev/i2c/base.c | 4 ++-- nvkm/subdev/i2c/pad.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'nvkm') diff --git a/nvkm/subdev/i2c/base.c b/nvkm/subdev/i2c/base.c index 0dc605db7..e5f1ffaa6 100644 --- a/nvkm/subdev/i2c/base.c +++ b/nvkm/subdev/i2c/base.c @@ -494,8 +494,8 @@ nouveau_i2c_create_port(struct nouveau_i2c *i2c, int index, u8 type, oclass = impl->pad_x; } - ret = nouveau_object_ctor(NULL, nv_object(i2c), oclass, NULL, pad, - &parent); + ret = nouveau_object_ctor(nv_object(i2c), nv_object(i2c), oclass, + NULL, pad, &parent); if (ret < 0) return; diff --git a/nvkm/subdev/i2c/pad.h b/nvkm/subdev/i2c/pad.h index 452ac10c3..89aea46a7 100644 --- a/nvkm/subdev/i2c/pad.h +++ b/nvkm/subdev/i2c/pad.h @@ -14,7 +14,7 @@ static inline struct nvkm_i2c_pad * nvkm_i2c_pad(struct nouveau_i2c_port *port) { struct nouveau_object *pad = nv_object(port); - while (pad->parent) + while (!nv_iclass(pad->parent, NV_SUBDEV_CLASS)) pad = pad->parent; return (void *)pad; } -- cgit v1.2.1