Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6:
parisc: fix compile breakage caused by inlining maybe_mkwrite
parisc : Remove broken line wrapping handling pdc_iodc_print()

+1 -12
+1 -12
arch/parisc/kernel/firmware.c
··· 1126 unsigned int i; 1127 unsigned long flags; 1128 1129 - for (i = 0; i < count && i < 79;) { 1130 switch(str[i]) { 1131 case '\n': 1132 iodc_dbuf[i+0] = '\r'; 1133 iodc_dbuf[i+1] = '\n'; 1134 i += 2; 1135 goto print; 1136 - case '\b': /* BS */ 1137 - i--; /* overwrite last */ 1138 default: 1139 iodc_dbuf[i] = str[i]; 1140 i++; 1141 break; 1142 } 1143 - } 1144 - 1145 - /* if we're at the end of line, and not already inserting a newline, 1146 - * insert one anyway. iodc console doesn't claim to support >79 char 1147 - * lines. don't account for this in the return value. 1148 - */ 1149 - if (i == 79 && iodc_dbuf[i-1] != '\n') { 1150 - iodc_dbuf[i+0] = '\r'; 1151 - iodc_dbuf[i+1] = '\n'; 1152 } 1153 1154 print:
··· 1126 unsigned int i; 1127 unsigned long flags; 1128 1129 + for (i = 0; i < count;) { 1130 switch(str[i]) { 1131 case '\n': 1132 iodc_dbuf[i+0] = '\r'; 1133 iodc_dbuf[i+1] = '\n'; 1134 i += 2; 1135 goto print; 1136 default: 1137 iodc_dbuf[i] = str[i]; 1138 i++; 1139 break; 1140 } 1141 } 1142 1143 print: