Commit e57b432d authored by Milo(Woogyom) Kim's avatar Milo(Woogyom) Kim Committed by Anton Vorontsov

lp8727_charger: Some minor fixes for the header

Pointer coding style changes
: add space between return type and function pointer
  ex) u8(*get_batt_present) (void)
   -> u8 (*get_batt_present) (void)
Signed-off-by: default avatarWoogyom Kim <milo.kim@ti.com>
Signed-off-by: default avatarAnton Vorontsov <cbouatmailru@gmail.com>
parent 620b2736
/*
* lp8727.h - Driver for LP8727 Micro/Mini USB IC with intergrated charger
*
* Copyright (C) 2011 National Semiconductor
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*/
#ifndef _LP8727_H
......@@ -43,10 +40,10 @@ struct lp8727_chg_param {
};
struct lp8727_platform_data {
u8(*get_batt_present) (void);
u16(*get_batt_level) (void);
u8(*get_batt_capacity) (void);
u8(*get_batt_temp) (void);
u8 (*get_batt_present)(void);
u16 (*get_batt_level)(void);
u8 (*get_batt_capacity)(void);
u8 (*get_batt_temp)(void);
struct lp8727_chg_param ac;
struct lp8727_chg_param usb;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment