vserver 1.9.3
[linux-2.6.git] / drivers / media / dvb / frontends / dst.c
index 431ea92..4834db9 100644 (file)
@@ -1145,8 +1145,8 @@ static int dst_attach (struct dvb_i2c_bus *i2c, void **data)
        }
 
        dst_init (dst);
-       dprintk("%s: register dst %8.8x bt %8.8x i2c %8.8x\n", __FUNCTION__, 
-                       (u32)dst, (u32)(dst->bt), (u32)(dst->i2c));
+       dprintk("%s: register dst %p bt %p i2c %p\n", __FUNCTION__, 
+                       dst, dst->bt, dst->i2c);
 
        info = &dst_info_sat;
        if (dst->dst_type == DST_TYPE_IS_TERR)
@@ -1162,7 +1162,7 @@ static int dst_attach (struct dvb_i2c_bus *i2c, void **data)
 static void dst_detach (struct dvb_i2c_bus *i2c, void *data)
 {
        dvb_unregister_frontend (dst_ioctl, i2c);
-       dprintk("%s: unregister dst %8.8x\n", __FUNCTION__, (u32)(data));
+       dprintk("%s: unregister dst %p\n", __FUNCTION__, data);
        if (data)
                kfree(data);
 }