Home | History | Annotate | Line # | Download | only in common
isfloppy.c revision 1.1.2.2
      1  1.1.2.2  yamt #include <lib/libkern/libkern.h>
      2  1.1.2.2  yamt #include <sparc/stand/common/isfloppy.h>
      3  1.1.2.2  yamt 
      4  1.1.2.2  yamt int
      5  1.1.2.2  yamt bootdev_isfloppy(const char *dev)
      6  1.1.2.2  yamt {
      7  1.1.2.2  yamt 	return strncmp(dev, "fd", 2) == 0 ||
      8  1.1.2.2  yamt 		strstr(dev, "SUNW,fdtwo") != NULL ||
      9  1.1.2.2  yamt 		strstr(dev, "fdthree") != NULL;
     10  1.1.2.2  yamt }
     11