]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/commitdiff
rapidio: constify rio_device_id
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Fri, 17 Nov 2017 23:30:15 +0000 (15:30 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Nov 2017 00:10:03 +0000 (16:10 -0800)
rio_device_id are not supposed to change at runtime.  rio driver is
working with const 'id_table'.  So mark the non-const rio_device_id
structs as const.

Link: http://lkml.kernel.org/r/1503734627-6058-2-git-send-email-arvind.yadav.cs@gmail.com
Link: http://lkml.kernel.org/r/1503734627-6058-3-git-send-email-arvind.yadav.cs@gmail.com
Link: http://lkml.kernel.org/r/1503734627-6058-4-git-send-email-arvind.yadav.cs@gmail.com
Link: http://lkml.kernel.org/r/1503734627-6058-5-git-send-email-arvind.yadav.cs@gmail.com
Link: http://lkml.kernel.org/r/1503734627-6058-6-git-send-email-arvind.yadav.cs@gmail.com
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Acked-by: Alexandre Bounine <alexandre.bounine@idt.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rapidio/switches/idt_gen2.c
drivers/rapidio/switches/idt_gen3.c
drivers/rapidio/switches/idtcps.c
drivers/rapidio/switches/tsi568.c
drivers/rapidio/switches/tsi57x.c

index e67b923b1ca6a74d880f789c6ade51acee88a50a..4931ed79042847399d5ea9b6a2c1688dda9090d7 100644 (file)
@@ -458,7 +458,7 @@ static void idtg2_remove(struct rio_dev *rdev)
        idtg2_sysfs(rdev, false);
 }
 
-static struct rio_device_id idtg2_id_table[] = {
+static const struct rio_device_id idtg2_id_table[] = {
        {RIO_DEVICE(RIO_DID_IDTCPS1848, RIO_VID_IDT)},
        {RIO_DEVICE(RIO_DID_IDTCPS1616, RIO_VID_IDT)},
        {RIO_DEVICE(RIO_DID_IDTVPS1616, RIO_VID_IDT)},
index c5923a547bedb6d674c5aba84673086020f97a5c..85a3908294d94f6f2fb6bf1b59c590211467c74f 100644 (file)
@@ -348,7 +348,7 @@ static void idtg3_shutdown(struct rio_dev *rdev)
        }
 }
 
-static struct rio_device_id idtg3_id_table[] = {
+static const struct rio_device_id idtg3_id_table[] = {
        {RIO_DEVICE(RIO_DID_IDTRXS1632, RIO_VID_IDT)},
        {RIO_DEVICE(RIO_DID_IDTRXS2448, RIO_VID_IDT)},
        { 0, }  /* terminate list */
index 7fbb60d3179602240766871fde2ace6d3b303283..4058ce2c76faf210234c877dfa7d06018e3f790c 100644 (file)
@@ -168,7 +168,7 @@ static void idtcps_remove(struct rio_dev *rdev)
        spin_unlock(&rdev->rswitch->lock);
 }
 
-static struct rio_device_id idtcps_id_table[] = {
+static const struct rio_device_id idtcps_id_table[] = {
        {RIO_DEVICE(RIO_DID_IDTCPS6Q, RIO_VID_IDT)},
        {RIO_DEVICE(RIO_DID_IDTCPS8, RIO_VID_IDT)},
        {RIO_DEVICE(RIO_DID_IDTCPS10Q, RIO_VID_IDT)},
index 8a43561b9d17f7d4b9dc3f67f4c2e3e521b84e14..1214628b7ded7d1b961ebd3d81d3645f21ce985f 100644 (file)
@@ -169,7 +169,7 @@ static void tsi568_remove(struct rio_dev *rdev)
        spin_unlock(&rdev->rswitch->lock);
 }
 
-static struct rio_device_id tsi568_id_table[] = {
+static const struct rio_device_id tsi568_id_table[] = {
        {RIO_DEVICE(RIO_DID_TSI568, RIO_VID_TUNDRA)},
        { 0, }  /* terminate list */
 };
index 2700d15f758423b5398e3d0047e94c7477be6274..9f063e214836a007fc9f6a425f8cbfed5bd7af9b 100644 (file)
@@ -336,7 +336,7 @@ static void tsi57x_remove(struct rio_dev *rdev)
        spin_unlock(&rdev->rswitch->lock);
 }
 
-static struct rio_device_id tsi57x_id_table[] = {
+static const struct rio_device_id tsi57x_id_table[] = {
        {RIO_DEVICE(RIO_DID_TSI572, RIO_VID_TUNDRA)},
        {RIO_DEVICE(RIO_DID_TSI574, RIO_VID_TUNDRA)},
        {RIO_DEVICE(RIO_DID_TSI577, RIO_VID_TUNDRA)},