[PATCH 03/16] ARM: mvebu: Add function to export the physical address of the boot register
Ezequiel Garcia
ezequiel.garcia at free-electrons.com
Tue Jul 1 08:02:54 PDT 2014
On 01 Jul 01:46 PM, Thomas Petazzoni wrote:
> Dear Gregory CLEMENT,
>
> On Fri, 27 Jun 2014 15:22:44 +0200, Gregory CLEMENT wrote:
>
> > static void __iomem *system_controller_base;
> > +static u32 system_controller_phys_base;
> >
> > struct mvebu_system_controller {
> > u32 rstoutn_mask_offset;
> > @@ -109,6 +110,13 @@ void mvebu_system_controller_set_cpu_boot_addr(void *boot_addr)
> > writel(virt_to_phys(boot_addr), system_controller_base +
> > mvebu_sc->resume_boot_addr);
> > }
> > +
> > +u32 mvebu_system_controller_get_phys_addr(void)
> > +{
> > + BUG_ON(system_controller_phys_base == NULL);
>
> This rightfully generates a fairly strong warning at compile time:
> you're comparing an u32 to NULL. It should be == 0 here.
>
Or a more readable BUG_ON(!system_controller_phys_base);
--
Ezequiel García, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com
More information about the linux-arm-kernel
mailing list