From mboxrd@z Thu Jan 1 00:00:00 1970 From: mturquette@linaro.org (Mike Turquette) Date: Wed, 19 Nov 2014 14:42:24 -0800 Subject: [PATCH 1/4] ARM: meson: add basic infrastructure for clocks In-Reply-To: <1416393143-20434-2-git-send-email-carlo@caione.org> References: <1416393143-20434-1-git-send-email-carlo@caione.org> <1416393143-20434-2-git-send-email-carlo@caione.org> Message-ID: <20141119224224.25314.58901@quantum> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Quoting Carlo Caione (2014-11-19 02:32:20) > diff --git a/drivers/clk/meson/clk-pll.c b/drivers/clk/meson/clk-pll.c > new file mode 100644 > index 0000000..5b6d064 > --- /dev/null > +++ b/drivers/clk/meson/clk-pll.c > @@ -0,0 +1,298 @@ > +/* > + * Copyright (c) 2014 Carlo Caione > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms and conditions of the GNU General Public License, > + * version 2, as published by the Free Software Foundation. > + * > + * This program is distributed in the hope it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for > + * more details. > + * > + * You should have received a copy of the GNU General Public License along with > + * this program. If not, see . > + */ > + > +#include > +#include > +#include > +#include All of the headers below are unnecessary. Copy/paste? I didn't bother to check the ones above. > +#include > +#include > +#include > +#include > +#include Regards, Mike