Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67946
b: refs/heads/master
c: 7e7654a
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 12, 2007
1 parent 58669a9 commit 870e0fd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 17 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: 19c38de88a80913351fcacefdb461cc0b585fa87
refs/heads/master: 7e7654a92a5a75a350cc3458389bc76273498f6a
5 changes: 1 addition & 4 deletions trunk/block/bsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1010,10 +1010,7 @@ int bsg_register_queue(struct request_queue *q, struct device *gdev,
}
EXPORT_SYMBOL_GPL(bsg_register_queue);

static struct cdev bsg_cdev = {
.kobj = {.name = "bsg", },
.owner = THIS_MODULE,
};
static struct cdev bsg_cdev;

static int __init bsg_init(void)
{
Expand Down
5 changes: 1 addition & 4 deletions trunk/drivers/char/raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,7 @@ static const struct file_operations raw_ctl_fops = {
.owner = THIS_MODULE,
};

static struct cdev raw_cdev = {
.kobj = {.name = "raw", },
.owner = THIS_MODULE,
};
static struct cdev raw_cdev;

static int __init raw_init(void)
{
Expand Down
5 changes: 1 addition & 4 deletions trunk/drivers/media/dvb/dvb-core/dvbdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,7 @@ static struct file_operations dvb_device_fops =
.open = dvb_device_open,
};

static struct cdev dvb_device_cdev = {
.kobj = {.name = "dvb", },
.owner = THIS_MODULE,
};
static struct cdev dvb_device_cdev;

int dvb_generic_open(struct inode *inode, struct file *file)
{
Expand Down
6 changes: 2 additions & 4 deletions trunk/drivers/usb/core/devio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1576,6 +1576,7 @@ static unsigned int usbdev_poll(struct file *file, struct poll_table_struct *wai
}

const struct file_operations usbdev_file_operations = {
.owner = THIS_MODULE,
.llseek = usbdev_lseek,
.read = usbdev_read,
.poll = usbdev_poll,
Expand Down Expand Up @@ -1625,10 +1626,7 @@ static struct notifier_block usbdev_nb = {
};
#endif

static struct cdev usb_device_cdev = {
.kobj = {.name = "usb_device", },
.owner = THIS_MODULE,
};
static struct cdev usb_device_cdev;

int __init usb_devio_init(void)
{
Expand Down

0 comments on commit 870e0fd

Please sign in to comment.