MFi386: rev 1.56: remove break after return

This commit is contained in:
Peter Wemm 2003-05-31 22:02:11 +00:00
parent 0c5b3efcb0
commit 395aac85f8

View file

@ -567,7 +567,7 @@ amd64_set_watch(watchnum, watchaddr, size, access, d)
case DBREG_DR7_WRONLY:
case DBREG_DR7_RDWR:
break;
default : return (-1); break;
default : return (-1);
}
/*
@ -577,7 +577,7 @@ amd64_set_watch(watchnum, watchaddr, size, access, d)
case 1 : mask = 0x00; break;
case 2 : mask = 0x01 << 2; break;
case 4 : mask = 0x03 << 2; break;
default : return (-1); break;
default : return (-1);
}
mask |= access;