ALSA: mips/hal2: Convert to platform remove callback returning void
[linux-2.6-block.git] / sound / mips / hal2.c
index 9ac9b58d7c8cdd94e0929d03153dc71ae795b4d5..3c26334227bb49ea9f8aaae8d101a3fcdf4c7a84 100644 (file)
@@ -877,17 +877,16 @@ static int hal2_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int hal2_remove(struct platform_device *pdev)
+static void hal2_remove(struct platform_device *pdev)
 {
        struct snd_card *card = platform_get_drvdata(pdev);
 
        snd_card_free(card);
-       return 0;
 }
 
 static struct platform_driver hal2_driver = {
        .probe  = hal2_probe,
-       .remove = hal2_remove,
+       .remove_new = hal2_remove,
        .driver = {
                .name   = "sgihal2",
        }