diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2007-07-18 05:39:45 -0400 |
|---|---|---|
| committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-07-18 09:59:17 -0400 |
| commit | add0b43ca67bf281ef7ac8ab47e9ee7b2d97a69f (patch) | |
| tree | 7a7aaab48f6ac1cff65ad920e306ffe79620fb47 | |
| parent | 784c145444e7dd58ae740d406155b72ac658f151 (diff) | |
UBI: fix compile warning
cdev.c whines in current git:
drivers/mtd/ubi/cdev.c: In function `major_to_device':
drivers/mtd/ubi/cdev.c:67: warning: control reaches end of non-void function
Shut it up.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
| -rw-r--r-- | drivers/mtd/ubi/cdev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index fb238d7ade35..fe4da1e96c52 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c | |||
| @@ -64,6 +64,7 @@ static struct ubi_device *major_to_device(int major) | |||
| 64 | if (ubi_devices[i] && ubi_devices[i]->major == major) | 64 | if (ubi_devices[i] && ubi_devices[i]->major == major) |
| 65 | return ubi_devices[i]; | 65 | return ubi_devices[i]; |
| 66 | BUG(); | 66 | BUG(); |
| 67 | return NULL; | ||
| 67 | } | 68 | } |
| 68 | 69 | ||
| 69 | /** | 70 | /** |
