Remove the last traces of bogus MAKEDEV functionality.
This commit is contained in:
parent
6bcf9ad3c5
commit
35c355e2f2
@ -233,20 +233,3 @@ Create_Chunk_DWIM(struct disk *d, const struct chunk *parent , u_long size, chun
|
||||
/* barfout(1, "Serious internal trouble"); */
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
MakeDevChunk(const struct chunk *c1, const char *path)
|
||||
{
|
||||
|
||||
if (c1->next)
|
||||
MakeDevChunk(c1->next, path);
|
||||
if (c1->part)
|
||||
MakeDevChunk(c1->part, path);
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
MakeDevDisk(struct disk *d, const char *path)
|
||||
{
|
||||
return MakeDevChunk(d->chunks, path);
|
||||
}
|
||||
|
@ -238,13 +238,6 @@ Create_Chunk_DWIM(struct disk *d, const struct chunk *parent , u_long size,
|
||||
* enough is used.
|
||||
*/
|
||||
|
||||
int
|
||||
MakeDev(struct chunk *c, const char *path);
|
||||
|
||||
int
|
||||
MakeDevDisk(struct disk *d, const char *path);
|
||||
/* Make device nodes for all chunks on this disk */
|
||||
|
||||
char *
|
||||
ShowChunkFlags(struct chunk *c);
|
||||
/* Return string to show flags. */
|
||||
|
Loading…
Reference in New Issue
Block a user