Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
12
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
8874b414
Commit
8874b414
authored
20 years ago
by
gregkh@suse.de
Committed by
Greg Kroah-Hartman
19 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[PATCH] class: convert arch/* to use the new class api instead of class_simple
Signed-off-by:
Greg Kroah-Hartman
<
gregkh@suse.de
>
parent
d253878b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arch/i386/kernel/cpuid.c
+11
-11
11 additions, 11 deletions
arch/i386/kernel/cpuid.c
arch/i386/kernel/msr.c
+11
-11
11 additions, 11 deletions
arch/i386/kernel/msr.c
with
22 additions
and
22 deletions
arch/i386/kernel/cpuid.c
+
11
−
11
View file @
8874b414
...
...
@@ -45,7 +45,7 @@
#include
<asm/uaccess.h>
#include
<asm/system.h>
static
struct
class
_simple
*
cpuid_class
;
static
struct
class
*
cpuid_class
;
#ifdef CONFIG_SMP
...
...
@@ -158,12 +158,12 @@ static struct file_operations cpuid_fops = {
.
open
=
cpuid_open
,
};
static
int
cpuid_class_
simple_
device_
add
(
int
i
)
static
int
cpuid_class_device_
create
(
int
i
)
{
int
err
=
0
;
struct
class_device
*
class_err
;
class_err
=
class_
simple_
device_
add
(
cpuid_class
,
MKDEV
(
CPUID_MAJOR
,
i
),
NULL
,
"cpu%d"
,
i
);
class_err
=
class_device_
create
(
cpuid_class
,
MKDEV
(
CPUID_MAJOR
,
i
),
NULL
,
"cpu%d"
,
i
);
if
(
IS_ERR
(
class_err
))
err
=
PTR_ERR
(
class_err
);
return
err
;
...
...
@@ -175,10 +175,10 @@ static int __devinit cpuid_class_cpu_callback(struct notifier_block *nfb, unsign
switch
(
action
)
{
case
CPU_ONLINE
:
cpuid_class_
simple_
device_
add
(
cpu
);
cpuid_class_device_
create
(
cpu
);
break
;
case
CPU_DEAD
:
class_
simple_device_remove
(
MKDEV
(
CPUID_MAJOR
,
cpu
));
class_
device_destroy
(
cpuid_class
,
MKDEV
(
CPUID_MAJOR
,
cpu
));
break
;
}
return
NOTIFY_OK
;
...
...
@@ -200,13 +200,13 @@ static int __init cpuid_init(void)
err
=
-
EBUSY
;
goto
out
;
}
cpuid_class
=
class_
simple_
create
(
THIS_MODULE
,
"cpuid"
);
cpuid_class
=
class_create
(
THIS_MODULE
,
"cpuid"
);
if
(
IS_ERR
(
cpuid_class
))
{
err
=
PTR_ERR
(
cpuid_class
);
goto
out_chrdev
;
}
for_each_online_cpu
(
i
)
{
err
=
cpuid_class_
simple_
device_
add
(
i
);
err
=
cpuid_class_device_
create
(
i
);
if
(
err
!=
0
)
goto
out_class
;
}
...
...
@@ -218,9 +218,9 @@ static int __init cpuid_init(void)
out_class:
i
=
0
;
for_each_online_cpu
(
i
)
{
class_
simple_device_remove
(
MKDEV
(
CPUID_MAJOR
,
i
));
class_
device_destroy
(
cpuid_class
,
MKDEV
(
CPUID_MAJOR
,
i
));
}
class_
simple_
destroy
(
cpuid_class
);
class_destroy
(
cpuid_class
);
out_chrdev:
unregister_chrdev
(
CPUID_MAJOR
,
"cpu/cpuid"
);
out:
...
...
@@ -232,8 +232,8 @@ static void __exit cpuid_exit(void)
int
cpu
=
0
;
for_each_online_cpu
(
cpu
)
class_
simple_device_remove
(
MKDEV
(
CPUID_MAJOR
,
cpu
));
class_
simple_
destroy
(
cpuid_class
);
class_
device_destroy
(
cpuid_class
,
MKDEV
(
CPUID_MAJOR
,
cpu
));
class_destroy
(
cpuid_class
);
unregister_chrdev
(
CPUID_MAJOR
,
"cpu/cpuid"
);
unregister_cpu_notifier
(
&
cpuid_class_cpu_notifier
);
}
...
...
This diff is collapsed.
Click to expand it.
arch/i386/kernel/msr.c
+
11
−
11
View file @
8874b414
...
...
@@ -44,7 +44,7 @@
#include
<asm/uaccess.h>
#include
<asm/system.h>
static
struct
class
_simple
*
msr_class
;
static
struct
class
*
msr_class
;
/* Note: "err" is handled in a funny way below. Otherwise one version
of gcc or another breaks. */
...
...
@@ -260,12 +260,12 @@ static struct file_operations msr_fops = {
.
open
=
msr_open
,
};
static
int
msr_class_
simple_
device_
add
(
int
i
)
static
int
msr_class_device_
create
(
int
i
)
{
int
err
=
0
;
struct
class_device
*
class_err
;
class_err
=
class_
simple_
device_
add
(
msr_class
,
MKDEV
(
MSR_MAJOR
,
i
),
NULL
,
"msr%d"
,
i
);
class_err
=
class_device_
create
(
msr_class
,
MKDEV
(
MSR_MAJOR
,
i
),
NULL
,
"msr%d"
,
i
);
if
(
IS_ERR
(
class_err
))
err
=
PTR_ERR
(
class_err
);
return
err
;
...
...
@@ -277,10 +277,10 @@ static int __devinit msr_class_cpu_callback(struct notifier_block *nfb, unsigned
switch
(
action
)
{
case
CPU_ONLINE
:
msr_class_
simple_
device_
add
(
cpu
);
msr_class_device_
create
(
cpu
);
break
;
case
CPU_DEAD
:
class_
simple_device_remove
(
MKDEV
(
MSR_MAJOR
,
cpu
));
class_
device_destroy
(
msr_class
,
MKDEV
(
MSR_MAJOR
,
cpu
));
break
;
}
return
NOTIFY_OK
;
...
...
@@ -302,13 +302,13 @@ static int __init msr_init(void)
err
=
-
EBUSY
;
goto
out
;
}
msr_class
=
class_
simple_
create
(
THIS_MODULE
,
"msr"
);
msr_class
=
class_create
(
THIS_MODULE
,
"msr"
);
if
(
IS_ERR
(
msr_class
))
{
err
=
PTR_ERR
(
msr_class
);
goto
out_chrdev
;
}
for_each_online_cpu
(
i
)
{
err
=
msr_class_
simple_
device_
add
(
i
);
err
=
msr_class_device_
create
(
i
);
if
(
err
!=
0
)
goto
out_class
;
}
...
...
@@ -320,8 +320,8 @@ static int __init msr_init(void)
out_class:
i
=
0
;
for_each_online_cpu
(
i
)
class_
simple_device_remove
(
MKDEV
(
MSR_MAJOR
,
i
));
class_
simple_
destroy
(
msr_class
);
class_
device_destroy
(
msr_class
,
MKDEV
(
MSR_MAJOR
,
i
));
class_destroy
(
msr_class
);
out_chrdev:
unregister_chrdev
(
MSR_MAJOR
,
"cpu/msr"
);
out:
...
...
@@ -332,8 +332,8 @@ static void __exit msr_exit(void)
{
int
cpu
=
0
;
for_each_online_cpu
(
cpu
)
class_
simple_device_remove
(
MKDEV
(
MSR_MAJOR
,
cpu
));
class_
simple_
destroy
(
msr_class
);
class_
device_destroy
(
msr_class
,
MKDEV
(
MSR_MAJOR
,
cpu
));
class_destroy
(
msr_class
);
unregister_chrdev
(
MSR_MAJOR
,
"cpu/msr"
);
unregister_cpu_notifier
(
&
msr_class_cpu_notifier
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment