diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-01 22:38:17 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:31 +0200 |
commit | fe6fa0d9061225de3e2dac1debcd7649c8f89b34 (patch) | |
tree | 86197ff778a7e1f65a621a875b29306190ee486e /linux/dev | |
parent | ea36fbbca63aae230fa877cfec5d94046a11d6a1 (diff) |
2006-02-01 Thomas Schwinge <tschwinge@gnu.org>
* linux/dev/drivers/block/genhd.c (add_bsd_partition): Only define if
both MACH and CONFIG_BSD_DISKLABEL are defined.
Reported by Matheus Morais <matheus.morais@gmail.com>.
Diffstat (limited to 'linux/dev')
-rw-r--r-- | linux/dev/drivers/block/genhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/dev/drivers/block/genhd.c b/linux/dev/drivers/block/genhd.c index 2eb221b..3946b39 100644 --- a/linux/dev/drivers/block/genhd.c +++ b/linux/dev/drivers/block/genhd.c @@ -111,7 +111,7 @@ static void add_partition (struct gendisk *hd, int minor, int start, int size) printk(" %s", disk_name(hd, minor, buf)); } -#ifdef MACH +#if defined (MACH) && defined (CONFIG_BSD_DISKLABEL) static int mach_minor; static void add_bsd_partition (struct gendisk *hd, int minor, int slice, |