Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141230
b: refs/heads/master
c: 93be73f
h: refs/heads/master
v: v3
  • Loading branch information
Andre Haupt authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 291a635 commit 0e908e3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 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: f02d3345edcf0db86a98e229a4441c2b60b42f7e
refs/heads/master: 93be73f92980fab947b9565695ffe26a4b7bbf29
26 changes: 13 additions & 13 deletions trunk/drivers/staging/me4000/me4000.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,23 +309,23 @@ static struct pci_driver me4000_driver = {
.probe = me4000_probe
};

static struct file_operations me4000_ao_fops_sing = {
static const struct file_operations me4000_ao_fops_sing = {
.owner = THIS_MODULE,
.write = me4000_ao_write_sing,
.ioctl = me4000_ao_ioctl_sing,
.open = me4000_open,
.release = me4000_release,
};

static struct file_operations me4000_ao_fops_wrap = {
static const struct file_operations me4000_ao_fops_wrap = {
.owner = THIS_MODULE,
.write = me4000_ao_write_wrap,
.ioctl = me4000_ao_ioctl_wrap,
.open = me4000_open,
.release = me4000_release,
};

static struct file_operations me4000_ao_fops_cont = {
static const struct file_operations me4000_ao_fops_cont = {
.owner = THIS_MODULE,
.write = me4000_ao_write_cont,
.poll = me4000_ao_poll_cont,
Expand All @@ -335,14 +335,14 @@ static struct file_operations me4000_ao_fops_cont = {
.fsync = me4000_ao_fsync_cont,
};

static struct file_operations me4000_ai_fops_sing = {
static const struct file_operations me4000_ai_fops_sing = {
.owner = THIS_MODULE,
.ioctl = me4000_ai_ioctl_sing,
.open = me4000_open,
.release = me4000_release,
};

static struct file_operations me4000_ai_fops_cont_sw = {
static const struct file_operations me4000_ai_fops_cont_sw = {
.owner = THIS_MODULE,
.read = me4000_ai_read,
.poll = me4000_ai_poll,
Expand All @@ -352,7 +352,7 @@ static struct file_operations me4000_ai_fops_cont_sw = {
.fasync = me4000_ai_fasync,
};

static struct file_operations me4000_ai_fops_cont_et = {
static const struct file_operations me4000_ai_fops_cont_et = {
.owner = THIS_MODULE,
.read = me4000_ai_read,
.poll = me4000_ai_poll,
Expand All @@ -361,7 +361,7 @@ static struct file_operations me4000_ai_fops_cont_et = {
.release = me4000_release,
};

static struct file_operations me4000_ai_fops_cont_et_value = {
static const struct file_operations me4000_ai_fops_cont_et_value = {
.owner = THIS_MODULE,
.read = me4000_ai_read,
.poll = me4000_ai_poll,
Expand All @@ -370,7 +370,7 @@ static struct file_operations me4000_ai_fops_cont_et_value = {
.release = me4000_release,
};

static struct file_operations me4000_ai_fops_cont_et_chanlist = {
static const struct file_operations me4000_ai_fops_cont_et_chanlist = {
.owner = THIS_MODULE,
.read = me4000_ai_read,
.poll = me4000_ai_poll,
Expand All @@ -379,29 +379,29 @@ static struct file_operations me4000_ai_fops_cont_et_chanlist = {
.release = me4000_release,
};

static struct file_operations me4000_dio_fops = {
static const struct file_operations me4000_dio_fops = {
.owner = THIS_MODULE,
.ioctl = me4000_dio_ioctl,
.open = me4000_open,
.release = me4000_release,
};

static struct file_operations me4000_cnt_fops = {
static const struct file_operations me4000_cnt_fops = {
.owner = THIS_MODULE,
.ioctl = me4000_cnt_ioctl,
.open = me4000_open,
.release = me4000_release,
};

static struct file_operations me4000_ext_int_fops = {
static const struct file_operations me4000_ext_int_fops = {
.owner = THIS_MODULE,
.ioctl = me4000_ext_int_ioctl,
.open = me4000_open,
.release = me4000_release,
.fasync = me4000_ext_int_fasync,
};

static struct file_operations *me4000_ao_fops_array[] = {
static const struct file_operations *me4000_ao_fops_array[] = {
/* single operations */
&me4000_ao_fops_sing,
/* wraparound operations */
Expand All @@ -410,7 +410,7 @@ static struct file_operations *me4000_ao_fops_array[] = {
&me4000_ao_fops_cont,
};

static struct file_operations *me4000_ai_fops_array[] = {
static const struct file_operations *me4000_ai_fops_array[] = {
/* single operations */
&me4000_ai_fops_sing,
/* continuous operations with software start */
Expand Down

0 comments on commit 0e908e3

Please sign in to comment.