Parcourir la source

[POWERPC] iSeries: Fix section mismatch in viodsasd

WARNING: vmlinux.o(.text+0x3017c): Section mismatch in reference from the function .vio_create_viodasd() to the function .devinit.text:.vio_register_device_node()

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Stephen Rothwell il y a 17 ans
Parent
commit
de7d812d05
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      arch/powerpc/kernel/vio.c
  2. 1 1
      include/asm-powerpc/vio.h

+ 1 - 1
arch/powerpc/kernel/vio.c

@@ -176,7 +176,7 @@ static void __devinit vio_dev_release(struct device *dev)
  * Returns a pointer to the created vio_dev or NULL if node has
  * Returns a pointer to the created vio_dev or NULL if node has
  * NULL device_type or compatible fields.
  * NULL device_type or compatible fields.
  */
  */
-struct vio_dev * __devinit vio_register_device_node(struct device_node *of_node)
+struct vio_dev *vio_register_device_node(struct device_node *of_node)
 {
 {
 	struct vio_dev *viodev;
 	struct vio_dev *viodev;
 	const unsigned int *unit_address;
 	const unsigned int *unit_address;

+ 1 - 1
include/asm-powerpc/vio.h

@@ -66,7 +66,7 @@ extern void __devinit vio_unregister_device(struct vio_dev *dev);
 
 
 struct device_node;
 struct device_node;
 
 
-extern struct vio_dev * __devinit vio_register_device_node(
+extern struct vio_dev *vio_register_device_node(
 		struct device_node *node_vdev);
 		struct device_node *node_vdev);
 extern const void *vio_get_attribute(struct vio_dev *vdev, char *which,
 extern const void *vio_get_attribute(struct vio_dev *vdev, char *which,
 		int *length);
 		int *length);