diff options
author | Jeremy Kerr | 2006-07-12 07:40:29 +0200 |
---|---|---|
committer | Paul Mackerras | 2006-07-31 07:55:05 +0200 |
commit | 018a3d1db7cdb6127656c1622ee1d2302e16436d (patch) | |
tree | 5b6714fa9fcd1441f7c1b30e0391484c095925b6 /include | |
parent | [POWERPC] maple: Constify & voidify get_property() (diff) | |
download | kernel-qcow2-linux-018a3d1db7cdb6127656c1622ee1d2302e16436d.tar.gz kernel-qcow2-linux-018a3d1db7cdb6127656c1622ee1d2302e16436d.tar.xz kernel-qcow2-linux-018a3d1db7cdb6127656c1622ee1d2302e16436d.zip |
[POWERPC] powermac: Constify & voidify get_property()
Now that get_property() returns a void *, there's no need to cast its
return value. Also, treat the return value as const, so we can
constify get_property later.
powermac platform & macintosh driver changes.
Built for pmac32_defconfig, g5_defconfig
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-powerpc/smu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/smu.h b/include/asm-powerpc/smu.h index 51e65fc46a03..e49f644ca63a 100644 --- a/include/asm-powerpc/smu.h +++ b/include/asm-powerpc/smu.h @@ -517,7 +517,7 @@ struct smu_sdbp_cpupiddata { * This returns the pointer to an SMU "sdb" partition data or NULL * if not found. The data format is described below */ -extern struct smu_sdbp_header *smu_get_sdb_partition(int id, +extern const struct smu_sdbp_header *smu_get_sdb_partition(int id, unsigned int *size); /* Get "sdb" partition data from an SMU satellite */ |