diff options
| -rw-r--r-- | drivers/tty/tty_io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index da9fde850754..6b20fd66d4ad 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c | |||
| @@ -2906,9 +2906,9 @@ void do_SAK(struct tty_struct *tty) | |||
| 2906 | 2906 | ||
| 2907 | EXPORT_SYMBOL(do_SAK); | 2907 | EXPORT_SYMBOL(do_SAK); |
| 2908 | 2908 | ||
| 2909 | static int dev_match_devt(struct device *dev, void *data) | 2909 | static int dev_match_devt(struct device *dev, const void *data) |
| 2910 | { | 2910 | { |
| 2911 | dev_t *devt = data; | 2911 | const dev_t *devt = data; |
| 2912 | return dev->devt == *devt; | 2912 | return dev->devt == *devt; |
| 2913 | } | 2913 | } |
| 2914 | 2914 | ||
