]> Git Repo - linux.git/commitdiff
[ALSA] sound: aoa of_node_put and kfree cleanup
authorMariusz Kozlowski <[email protected]>
Mon, 8 Jan 2007 09:59:51 +0000 (10:59 +0100)
committerJaroslav Kysela <[email protected]>
Fri, 9 Feb 2007 08:02:55 +0000 (09:02 +0100)
This patch removes redundant argument checks for of_node_put() and kfree().
Acked-by: Johannes Berg <[email protected]>
Signed-off-by: Mariusz Kozlowski <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
sound/aoa/fabrics/snd-aoa-fabric-layout.c

index 409809600ddce1978da363f61ddd7e4ecb8c8266..fa4a69fcdc2795c65aa2851972dc35206f248aa4 100644 (file)
@@ -1034,9 +1034,9 @@ static int aoa_fabric_layout_probe(struct soundbus_dev *sdev)
        list_del(&ldev->list);
        layouts_list_items--;
  outnodev:
-       if (sound) of_node_put(sound);
+       of_node_put(sound);
        layout_device = NULL;
-       if (ldev) kfree(ldev);
+       kfree(ldev);
        return -ENODEV;
 }
 
This page took 0.058125 seconds and 4 git commands to generate.