diff options
author | Colin Cross <ccross@android.com> | 2011-10-25 11:33:26 +0800 |
---|---|---|
committer | Andy Green <andy.green@linaro.org> | 2011-10-25 11:33:26 +0800 |
commit | d0d74a01de49b0c9ffb5141fb0361e067dac3749 (patch) | |
tree | 4cf1fb6e5209be3c29da5f401c4137d083d763fb | |
parent | 6f3a4be357ef89fcf204ee058c3ad1cfc49269d3 (diff) |
fs: partitions: Fix warnings in fs/partitions/check.c
Change-Id: I4398ace0c55d4833b1fcbb7a4e71ab8f0b1b044a
Signed-off-by: Colin Cross <ccross@android.com>
-rw-r--r-- | fs/partitions/check.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index 3c54bbcea5b..eca21808246 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c @@ -366,9 +366,8 @@ static void part_release(struct device *dev) kfree(p); } -static int part_uevent(struct device *dev, struct kobj_uvent_env *env) +static int part_uevent(struct device *dev, struct kobj_uevent_env *env) { - struct gendisk *disk = dev_to_disk(dev); struct hd_struct *part = dev_to_part(dev); add_uevent_var(env, "PARTN=%u", part->partno); |