Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 197218
b: refs/heads/master
c: 5aaaeba
h: refs/heads/master
v: v3
  • Loading branch information
Jonathan Cameron authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 4c27fce commit 3861eab
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 22 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e5c003ae82865c43feca9e11fb291ec2304a63d1
refs/heads/master: 5aaaeba82e00958ecb2c890b4953a249bbde9426
2 changes: 1 addition & 1 deletion trunk/drivers/staging/iio/iio.h
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ void iio_deallocate_chrdev(struct iio_handler *handler);
#define IIO_UNSIGNED(a) (a)

extern dev_t iio_devt;
extern struct class iio_class;
extern struct bus_type iio_bus_type;

/**
* iio_put_device() - reference counted deallocation of struct device
Expand Down
28 changes: 11 additions & 17 deletions trunk/drivers/staging/iio/industrialio-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,10 @@ dev_t iio_devt;
EXPORT_SYMBOL(iio_devt);

#define IIO_DEV_MAX 256
static char *iio_devnode(struct device *dev, mode_t *mode)
{
return kasprintf(GFP_KERNEL, "iio/%s", dev_name(dev));
}

struct class iio_class = {
struct bus_type iio_bus_type = {
.name = "iio",
.devnode = iio_devnode,
};
EXPORT_SYMBOL(iio_class);
EXPORT_SYMBOL(iio_bus_type);

void __iio_change_event(struct iio_detected_event_list *ev,
int ev_code,
Expand Down Expand Up @@ -405,7 +399,7 @@ int iio_setup_ev_int(struct iio_event_interface *ev_int,
{
int ret, minor;

ev_int->dev.class = &iio_class;
ev_int->dev.bus = &iio_bus_type;
ev_int->dev.parent = dev;
ev_int->dev.type = &iio_event_type;
device_initialize(&ev_int->dev);
Expand Down Expand Up @@ -478,31 +472,31 @@ static int __init iio_init(void)
{
int ret;

/* Create sysfs class */
ret = class_register(&iio_class);
/* Register sysfs bus */
ret = bus_register(&iio_bus_type);
if (ret < 0) {
printk(KERN_ERR
"%s could not create sysfs class\n",
"%s could not register bus type\n",
__FILE__);
goto error_nothing;
}

ret = iio_dev_init();
if (ret < 0)
goto error_unregister_class;
goto error_unregister_bus_type;

return 0;

error_unregister_class:
class_unregister(&iio_class);
error_unregister_bus_type:
bus_unregister(&iio_bus_type);
error_nothing:
return ret;
}

static void __exit iio_exit(void)
{
iio_dev_exit();
class_unregister(&iio_class);
bus_unregister(&iio_bus_type);
}

static int iio_device_register_sysfs(struct iio_dev *dev_info)
Expand Down Expand Up @@ -768,7 +762,7 @@ struct iio_dev *iio_allocate_device(void)

if (dev) {
dev->dev.type = &iio_dev_type;
dev->dev.class = &iio_class;
dev->dev.bus = &iio_bus_type;
device_initialize(&dev->dev);
dev_set_drvdata(&dev->dev, (void *)dev);
mutex_init(&dev->mlock);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/iio/industrialio-ring.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ __iio_request_ring_buffer_access_chrdev(struct iio_ring_buffer *buf,
buf->access_handler.flags = 0;

buf->access_dev.parent = &buf->dev;
buf->access_dev.class = &iio_class;
buf->access_dev.bus = &iio_bus_type;
buf->access_dev.type = &iio_ring_access_type;
device_initialize(&buf->access_dev);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/iio/industrialio-trigger.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ struct iio_trigger *iio_allocate_trigger(void)
trig = kzalloc(sizeof *trig, GFP_KERNEL);
if (trig) {
trig->dev.type = &iio_trig_type;
trig->dev.class = &iio_class;
trig->dev.bus = &iio_bus_type;
device_initialize(&trig->dev);
dev_set_drvdata(&trig->dev, (void *)trig);
spin_lock_init(&trig->pollfunc_list_lock);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/iio/ring_sw.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ struct iio_ring_buffer *iio_sw_rb_allocate(struct iio_dev *indio_dev)
buf->dev.type = &iio_sw_ring_type;
device_initialize(&buf->dev);
buf->dev.parent = &indio_dev->dev;
buf->dev.class = &iio_class;
buf->dev.bus = &iio_bus_type;
dev_set_drvdata(&buf->dev, (void *)buf);

return buf;
Expand Down

0 comments on commit 3861eab

Please sign in to comment.