>Number: 147471 >Category: misc >Synopsis: [patch] whitespace discrepancy in sys/mips/include/memdev.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 04 15:10:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: >Organization: >Environment: >Description: memdev.h in mips has a whitespace discrepancy with regard to other arches.
namely, all other arches have: #define<TAB>CDEV_MINOR_KMEM<TAB>1 while mips has: #define<TAB>CDEV_MINOR_KMEM<SPACE>1 >How-To-Repeat: >Fix: Bring in to common appearance. Patch attached with submission follows: Index: sys/mips/include/memdev.h =================================================================== --- sys/mips/include/memdev.h (revision 207204) +++ sys/mips/include/memdev.h (working copy) @@ -28,7 +28,7 @@ */ #define CDEV_MINOR_MEM 0 -#define CDEV_MINOR_KMEM 1 +#define CDEV_MINOR_KMEM 1 d_open_t memopen; d_read_t memrw; >Release-Note: >Audit-Trail: >Unformatted: _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
