diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:42 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 15:05:02 -0800 |
| commit | f7e2f350f16f3fc2cb7920ccc202ba5310daed3e (patch) | |
| tree | 141e5bf1153b6936499f337de610f84f35ccca4d | |
| parent | 0cae4685a602a8bf9a86fa2417d6c035c09d6341 (diff) | |
staging: octeon: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/octeon/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/octeon/ethernet.c b/drivers/staging/octeon/ethernet.c index 9276667f4b34..ef32dc1bbc80 100644 --- a/drivers/staging/octeon/ethernet.c +++ b/drivers/staging/octeon/ethernet.c @@ -813,7 +813,7 @@ static int cvm_oct_probe(struct platform_device *pdev) return 0; } -static int __devexit cvm_oct_remove(struct platform_device *pdev) +static int cvm_oct_remove(struct platform_device *pdev) { int port; |