modprobe: reformat to match bbox style
This commit is contained in:
parent
82f9e28513
commit
cf70433173
@ -7,9 +7,6 @@
|
|||||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <sys/utsname.h> /* for uname(2) */
|
#include <sys/utsname.h> /* for uname(2) */
|
||||||
|
|
||||||
#include "libbb.h"
|
#include "libbb.h"
|
||||||
@ -27,12 +24,12 @@ int get_linux_version_code(void)
|
|||||||
|
|
||||||
if (uname(&name) == -1) {
|
if (uname(&name) == -1) {
|
||||||
bb_perror_msg("cannot get system information");
|
bb_perror_msg("cannot get system information");
|
||||||
return (0);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
s = name.release;
|
s = name.release;
|
||||||
r = 0;
|
r = 0;
|
||||||
for (i=0 ; i<3 ; i++) {
|
for (i = 0; i < 3; i++) {
|
||||||
r = r * 256 + atoi(strtok(s, "."));
|
r = r * 256 + atoi(strtok(s, "."));
|
||||||
s = NULL;
|
s = NULL;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user